blob: b5839af84af8c3d652472c0b1ba30e4ab0b4062a (
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.8
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="https://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="20d2700cc74bce02e3e1b477f5e4dbd6546bb74625de235baaaa31e24f506930927af53de3d0880c0b16f93a10cec993c58a12adba59dec7dda0e389261799aa gegl-0.4.8.tar.bz2"
|