summaryrefslogtreecommitdiff
path: root/libs/gdk-pixbuf/MAKEPKG
diff options
context:
space:
mode:
Diffstat (limited to 'libs/gdk-pixbuf/MAKEPKG')
-rw-r--r--libs/gdk-pixbuf/MAKEPKG43
1 files changed, 43 insertions, 0 deletions
diff --git a/libs/gdk-pixbuf/MAKEPKG b/libs/gdk-pixbuf/MAKEPKG
new file mode 100644
index 0000000..5002d96
--- /dev/null
+++ b/libs/gdk-pixbuf/MAKEPKG
@@ -0,0 +1,43 @@
+#!/bin/mkpkg
+# description: An image loading library for GTK+
+# url: https://wiki.gnome.org/Projects/GdkPixbuf
+
+name=gdk-pixbuf
+version=2.44.8
+release=2
+_short=2.44
+depends=(glib libpng libjpeg-turbo tiff shared-mime-info)
+makedeps=(meson)
+source=(https://download.gnome.org/sources/$name/$_short/$name-$version.tar.xz)
+
+sha256sums=(
+ "919f529512961a12e81cd4b4b466a48c3933469e7f9a310c6513cd4fb252ba3c"
+)
+
+build() {
+ meson setup $name-$version build \
+ --prefix=/usr \
+ --buildtype=plain \
+ -D glycin=disabled \
+ -D png=enabled \
+ -D jpeg=enabled \
+ -D tiff=enabled \
+ -D gif=enabled \
+ -D others=disabled \
+ -D tests=false \
+ -D installed_tests=false \
+ -D man=false
+
+ meson compile -C build
+ DESTDIR=$PKG meson install -C build
+
+ rm -rf $PKG/usr/share/locale
+}
+
+signify() {
+ untrusted comment: public key
+ RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
+}
+
+# vim: filetype=sh
+