23 lines
598 B
Plaintext
23 lines
598 B
Plaintext
|
# Description: The Gdk Pixbuf is a toolkit for image loading and pixel buffer manipulation.
|
||
|
# URL: http://www.gtk.org/
|
||
|
# Packager: pierre at nutyx dot org
|
||
|
# Depends on: gobject-introspection jasper xorg-libxcomposite libtiff libpng libjpeg-turbo
|
||
|
|
||
|
name=gdk-pixbuf
|
||
|
version=2.32.3
|
||
|
release=1
|
||
|
|
||
|
source=(http://ftp.gnome.org/pub/gnome/sources/$name/${version%.*}/$name-$version.tar.xz)
|
||
|
|
||
|
build() {
|
||
|
cd $name-$version
|
||
|
./configure --prefix=/usr \
|
||
|
--mandir=/usr/share/man \
|
||
|
--infodir=/usr/share/info \
|
||
|
--sysconfdir=/etc \
|
||
|
-with-x11 --with-libjasper
|
||
|
make
|
||
|
make DESTDIR=$PKG install
|
||
|
mkdir -p $PKG/etc/gtk-2.0
|
||
|
}
|