mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* Cmake 4.0.1 => 4.0.2 * Adjust cmake build options to properly set LIBRARY_PATH. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust cmake build. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust cmake build options. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Remove 'mold -run' usage as that confuses LIBRARY_PATH overrides. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/386 to update-cmake * Add built packages for linux/amd64 to update-cmake * Add built packages for linux/arm/v7 to update-cmake * Confirm autotools change works with nano update. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/386 to update-cmake * Add built packages for linux/amd64 to update-cmake * Add built packages for linux/arm/v7 to update-cmake --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: Ed Reel <edreel@gmail.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com>
69 lines
2.1 KiB
Ruby
69 lines
2.1 KiB
Ruby
require 'package'
|
|
|
|
class Gdk_pixbuf < Package
|
|
description 'GdkPixbuf is a library for image loading and manipulation.'
|
|
homepage 'https://developer.gnome.org/gdk-pixbuf'
|
|
@_ver = '2.42.10'
|
|
version "#{@_ver}-1"
|
|
license 'LGPL-2.1+'
|
|
compatibility 'aarch64 armv7l x86_64'
|
|
source_url 'https://gitlab.gnome.org/GNOME/gdk-pixbuf.git'
|
|
git_hashtag @_ver
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '8d79852a5069b1c1e5a6834648c32f346ad407e894be2ecc75a66f69cf42160c',
|
|
armv7l: '8d79852a5069b1c1e5a6834648c32f346ad407e894be2ecc75a66f69cf42160c',
|
|
x86_64: '65eb125c9b4a15ba85b5f3d95f7e5a66d1024154ed34cf807d8fa651800e259d'
|
|
})
|
|
|
|
depends_on 'glib' # R
|
|
depends_on 'gobject_introspection' => :build
|
|
depends_on 'harfbuzz' # R
|
|
depends_on 'libjpeg_turbo' # R
|
|
depends_on 'libtiff' # R
|
|
depends_on 'libwebp' # R
|
|
depends_on 'pango' => :build
|
|
depends_on 'py3_docutils' => :build
|
|
depends_on 'py3_gi_docgen' => :build
|
|
depends_on 'py3_jinja2' => :build
|
|
depends_on 'py3_markdown' => :build
|
|
depends_on 'py3_pygments' => :build
|
|
depends_on 'py3_six' => :build
|
|
depends_on 'py3_toml' => :build
|
|
depends_on 'py3_typogrify' => :build
|
|
depends_on 'glibc' # R
|
|
depends_on 'libpng' # R
|
|
depends_on 'zlib' # R
|
|
|
|
gnome
|
|
|
|
def self.build
|
|
system "meson setup #{CREW_MESON_OPTIONS} \
|
|
-Dinstalled_tests=false \
|
|
-Dbuiltin_loaders=all \
|
|
-Drelocatable=true \
|
|
-Ddebug=false \
|
|
-Dgtk_doc=false \
|
|
-Dman=true \
|
|
-Dtests=false \
|
|
builddir"
|
|
system 'samu -C builddir'
|
|
end
|
|
|
|
def self.install
|
|
system "DESTDIR=#{CREW_DEST_DIR} samu -C builddir install"
|
|
loader_dir = "#{CREW_DEST_LIB_PREFIX}/gdk-pixbuf-2.0/2.10.0/loaders"
|
|
FileUtils.mkdir_p loader_dir
|
|
system "touch #{loader_dir}.cache"
|
|
|
|
FileUtils.mkdir_p "#{CREW_DEST_PREFIX}/etc/env.d/"
|
|
@gdk_pixbuf_env = <<~GDK_PIXBUF_ENV_EOF
|
|
# gdk-pixbuf configuration
|
|
export GDK_PIXBUF_MODULEDIR=#{CREW_LIB_PREFIX}/gdk-pixbuf-2.0/2.10.0/loaders
|
|
export GDK_PIXBUF_MODULE_FILE=#{CREW_LIB_PREFIX}/gdk-pixbuf-2.0/2.10.0/loaders.cache
|
|
GDK_PIXBUF_ENV_EOF
|
|
File.write("#{CREW_DEST_PREFIX}/etc/env.d/gdk_pixbuf", @gdk_pixbuf_env)
|
|
end
|
|
end
|