diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2010-09-28 07:42:50 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2010-09-28 07:42:50 +0000 |
commit | b09b7996bd35d720fa81977cd17fd4ec437daf07 (patch) | |
tree | f257906989b7a7ae71a1795f951b8502f9cfc2ec /main/gdk-pixbuf/APKBUILD | |
parent | cc4a5f54deaa0891b96f027d3ad2ee3a6b8fc996 (diff) | |
download | aports-b09b7996bd35d720fa81977cd17fd4ec437daf07.tar.bz2 aports-b09b7996bd35d720fa81977cd17fd4ec437daf07.tar.xz |
main/gdk-pixbuf: new aport
GDK Pixbuf library
http://www.gtk.org/
Diffstat (limited to 'main/gdk-pixbuf/APKBUILD')
-rw-r--r-- | main/gdk-pixbuf/APKBUILD | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/main/gdk-pixbuf/APKBUILD b/main/gdk-pixbuf/APKBUILD new file mode 100644 index 0000000000..1d6cde5bcb --- /dev/null +++ b/main/gdk-pixbuf/APKBUILD @@ -0,0 +1,35 @@ +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=gdk-pixbuf +pkgver=2.22.0 +pkgrel=0 +pkgdesc="GDK Pixbuf library" +url="http://www.gtk.org/" +license="LGPL" +depends= +depends_dev= +makedepends="tiff-dev libpng-dev glib-dev jpeg-dev gobject-introspection" +install= +subpackages="$pkgname-dev $pkgname-doc" +source="http://ftp.gnome.org/pub/gnome/sources/gdk-pixbuf/2.22/gdk-pixbuf-$pkgver.tar.bz2" + +_builddir="$srcdir"/$pkgname-$pkgver + +prepare() { + cd "$_builddir" +} + +build() { + cd "$_builddir" + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info + make || return 1 +} + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" install +} + +md5sums="0447e70f7bada542182d12e6459442b0 gdk-pixbuf-2.22.0.tar.bz2" |