diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2017-09-29 07:25:06 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2017-09-29 07:28:20 +0000 |
commit | 95aeab4994065e6a26f794032b9d46ae32fc612a (patch) | |
tree | b13c5bd7ac47cfb962ab08e1db26c6b79cc5304d /community/gegl/APKBUILD | |
parent | 4dde5d5a86737f9d7f5ce23bd022dc60dc81d527 (diff) | |
download | aports-95aeab4994065e6a26f794032b9d46ae32fc612a.tar.bz2 aports-95aeab4994065e6a26f794032b9d46ae32fc612a.tar.xz |
community/gegl: move from main
Diffstat (limited to 'community/gegl/APKBUILD')
-rw-r--r-- | community/gegl/APKBUILD | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/community/gegl/APKBUILD b/community/gegl/APKBUILD new file mode 100644 index 0000000000..e3852295d8 --- /dev/null +++ b/community/gegl/APKBUILD @@ -0,0 +1,46 @@ +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=gegl +pkgver=0.2.0 +pkgrel=5 +pkgdesc="Graph based image processing framework" +url="http://www.gegl.org/" +arch="all" +license="GPL3 LGPL3" +makedepends="babl-dev libpng-dev libjpeg-turbo-dev gtk+-dev librsvg-dev + lua5.1-dev jasper-dev exiv2-dev" +subpackages="$pkgname-dev $pkgname-lang" +source="http://ftp.gimp.org/pub/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2 + " + +depends_dev="babl-dev glib-dev" +_builddir="$srcdir"/$pkgname-$pkgver +prepare() { + cd "$_builddir" + update_config_sub || return 1 + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir/$i" || return 1;; + esac + done +} + +build() { + cd "$_builddir" + ./configure \ + --build=$CBUILD \ + --host=$CHOST \ + --prefix=/usr \ + --disable-docs \ + --with-exiv2 \ + --with-jasper \ + --with-librsvg \ + --with-lua \ + || return 1 + make || return 1 +} + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" install || return 1 +} +sha512sums="16ef3f6852fd8efef2b6468a754342a2d003f2c2bef468d9465a448e6c89dedb8e791570f073a9faed05218a7c94c6c418eaa0f3abeadfb3e6b88d766ab792c8 gegl-0.2.0.tar.bz2" |