blob: 2bb9c31a5fa1a45c84e2cf3bb7a1e8eb18dca6f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Description: Generic Graphics Library
# URL: http://gegl.org/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on: babl,gtk, librsvg, libpng, ruby, lua, ffmpeg, librsvg, openexr
name=gegl
version=0.0.22
release=1
source=(ftp://ftp.gimp.org/pub/$name/0.0/$name-$version.tar.bz2)
build() {
cd $name-$version
./configure --prefix=/usr \
--with-sdl --with-openexr --with-librsvg \
--with-libavformat --disable-docs
make
make DESTDIR=$PKG install
}
|