59 lines
1.6 KiB
Plaintext
59 lines
1.6 KiB
Plaintext
# Template build file for 'gdk-pixbuf'.
|
|
pkgname=gdk-pixbuf
|
|
version=2.30.8
|
|
revision=1
|
|
build_style=gnu-configure
|
|
configure_args="--without-libjasper --with-included-loaders=png --with-x11 gio_can_sniff=yes"
|
|
hostmakedepends="libtool perl pkg-config glib-devel"
|
|
makedepends="libglib-devel libpng-devel>=1.6 libjpeg-turbo-devel tiff-devel libX11-devel"
|
|
triggers="gtk-pixbuf-loaders"
|
|
short_desc="An Image loading library for The GTK+ toolkit (v2)"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
homepage="http://www.gtk.org/"
|
|
license="GPL-2"
|
|
distfiles="${GNOME_SITE}/$pkgname/${version%.*}/$pkgname-$version.tar.xz"
|
|
checksum=4853830616113db4435837992c0aebd94cbb993c44dc55063cee7f72a7bef8be
|
|
|
|
# Package build options
|
|
build_options="gir"
|
|
|
|
# Disable gir for cross builds.
|
|
if [ -z "$CROSS_BUILD" ]; then
|
|
build_options_default="gir"
|
|
fi
|
|
|
|
if [ "$build_option_gir" ]; then
|
|
configure_args+=" --enable-introspection"
|
|
makedepends+=" gobject-introspection"
|
|
else
|
|
configure_args+=" --disable-introspection"
|
|
fi
|
|
|
|
pre_configure() {
|
|
libtoolize -f
|
|
}
|
|
|
|
gdk-pixbuf-xlib_package() {
|
|
replaces="${sourcepkg}<2.30.8"
|
|
short_desc+=" - xlib rendering library"
|
|
pkg_install() {
|
|
vmove usr/lib/libgdk_pixbuf_xlib*.so.*
|
|
}
|
|
}
|
|
|
|
gdk-pixbuf-devel_package() {
|
|
depends="libglib-devel libpng-devel>=1.6 ${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
|
|
}
|
|
}
|