vp-build/srcpkgs/gdk-pixbuf/template

57 lines
1.6 KiB
Bash

# Template file for 'gdk-pixbuf'
pkgname=gdk-pixbuf
version=2.36.11
revision=1
build_style=gnu-configure
configure_args="$(vopt_enable gir introspection) --without-libjasper
--with-included-loaders=png --with-x11 gio_can_sniff=yes"
hostmakedepends="automake libtool perl pkg-config gettext-devel
glib-devel $(vopt_if gir gobject-introspection)"
makedepends="libglib-devel libpng-devel libjpeg-turbo-devel tiff-devel libX11-devel"
triggers="gtk-pixbuf-loaders"
short_desc="Image loading library for The GTK+ toolkit (v2)"
maintainer="Juan RP <xtraeme@voidlinux.eu>"
homepage="https://wiki.gnome.org/Projects/GdkPixbuf"
license="GPL-2"
distfiles="${GNOME_SITE}/$pkgname/${version%.*}/$pkgname-$version.tar.xz"
checksum=ae62ab87250413156ed72ef756347b10208c00e76b222d82d9ed361ed9dde2f3
# Package build options
build_options="gir"
# Disable gir for cross builds.
if [ -z "$CROSS_BUILD" ]; then
build_options_default="gir"
fi
pre_configure() {
sed -i '/SUBDIRS/s/tests//' Makefile.am
autoreconf -fi
# Can't create loaders.cache with cross compiled modules
if [ -n "$CROSS_BUILD" ]; then
touch gdk-pixbuf/loaders.cache
fi
}
gdk-pixbuf-xlib_package() {
short_desc+=" - xlib rendering library"
pkg_install() {
vmove usr/lib/libgdk_pixbuf_xlib*.so.*
}
}
gdk-pixbuf-devel_package() {
depends="${makedepends} ${sourcepkg}-xlib>=${version}_${revision} ${sourcepkg}>=${version}_${revision}"
short_desc+=" - development files"
pkg_install() {
vmove "usr/lib/*.so"
vmove usr/lib/pkgconfig
vmove usr/include
vmove "usr/bin/*csource*"
vmove "usr/share/man/man1/*csource*"
if [ "$build_option_gir" ]; then
vmove usr/share/gir-1.0
fi
vmove usr/share/gtk-doc
}
}