blob: 9f9b27b28f17e1bb3cffa524a60d125ac3eab50d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=gegl
pkgver=0.4.2
pkgrel=0
pkgdesc="Graph based image processing framework"
url="http://www.gegl.org/"
arch="all"
license="GPL-3.0 LGPL-3.0"
makedepends="babl-dev libpng-dev libjpeg-turbo-dev gtk+-dev librsvg-dev
lua5.1-dev jasper-dev exiv2-dev json-glib-dev"
subpackages="$pkgname-dev $pkgname-lang"
source="http://ftp.gimp.org/pub/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2"
builddir="$srcdir"/$pkgname-$pkgver
build() {
cd "$builddir"
./configure \
--build=$CBUILD \
--prefix=/usr \
--disable-docs \
--with-exiv2 \
--with-jasper \
--with-lua
make
}
package() {
cd "$builddir"
make DESTDIR="$pkgdir" install
}
sha512sums="8d842f5e192d279529615e09da8a76b051baa9c257ac699eba5f8ce46b4511554949e35f494e99c190b1477a700e018e2243a9e84c3c79e331824ca364b6cefd gegl-0.4.2.tar.bz2"
|