1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Description: Generic Graphics Library
# URL: http://gegl.org/
# Maintainer: git.gnome.org/browse/gegl/
# 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.2.0
release=2
source=(ftp://ftp.gimp.org/pub/$name/0.2/$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
}
|