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
|
# 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, graphviz, exiv2, v4l-utils, asciidoc
# Run on: babl,gtk,librsvg,libpng,ruby,lua,ffmpeg,librsvg,openexr,graphviz,exiv2,v4l-utils,asciidoc
name=gegl
version=0.1.6
release=2
source=(ftp://ftp.gimp.org/pub/$name/0.1/$name-$version.tar.bz2
gegl-ffmpeg.patch)
build() {
cd $name-$version
patch -p1 -i ../gegl-ffmpeg.patch
./configure --prefix=/usr \
--with-sdl --with-openexr --with-librsvg \
--with-libavformat --disable-docs
make
make DESTDIR=$PKG install
}
|