forked from ports/compat-32
29 lines
751 B
Plaintext
29 lines
751 B
Plaintext
# Description: An image loading library for GTK+
|
|
# URL: http://www.gtk.org/
|
|
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
|
|
# Depends on: gdk-pixbuf glib-32 libpng-32 libtiff-32 xorg-libx11-32
|
|
|
|
name=gdk-pixbuf-32
|
|
version=2.30.8
|
|
release=1
|
|
source=(http://download.gnome.org/sources/gdk-pixbuf/${version%.*}/gdk-pixbuf-$version.tar.xz)
|
|
|
|
build() {
|
|
cd gdk-pixbuf-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--mandir=/usr/man \
|
|
--libdir=/usr/lib32 \
|
|
--without-libjasper \
|
|
--disable-nls \
|
|
--with-x11
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
mv $PKG/usr/bin/gdk-pixbuf-query-loaders $PKG/usr/bin/gdk-pixbuf-query-loaders-32
|
|
rm $PKG/usr/bin/{gdk-pixbuf-pixdata,gdk-pixbuf-csource}
|
|
rm -r $PKG/usr/{include,man} $PKG/usr/share/gtk-doc
|
|
}
|