wok-next view gegl/receipt @ rev 20488

palemoon: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Mar 12 11:00:54 2018 +0100 (2018-03-12)
parents c4e53a39395a
children d43bf7aae921
line source
1 # SliTaz package receipt v2.
3 PACKAGE="gegl"
4 VERSION="0.2.0"
5 CATEGORY="system-tools"
6 SHORT_DESC="Generic Graphics Library"
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL3"
9 WEB_SITE="http://gegl.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="ftp://ftp.gimp.org/pub/$PACKAGE/${VERSION%.*}/$TARBALL"
14 BUILD_DEPENDS="babl-dev expat-dev gtk+-dev jasper-dev intltool"
15 SPLIT="gegl-dev"
17 compile_rules() {
18 # Keep gegl light so we can make smaller gimp LiveCD flavors
19 ./configure \
20 --disable-docs \
21 --without-sdl \
22 --without-librsvg \
23 --without-graphviz \
24 --without-lua \
25 --without-libavformat \
26 --without-libv4l \
27 $CONFIGURE_ARGS &&
28 make && make install
29 }
31 genpkg_rules() {
32 case $PACKAGE in
33 gegl)
34 copy @std
35 DEPENDS="babl expat gtk+ jpeg xorg-libX11"
36 ;;
37 *-dev)
38 copy @dev
39 DEPENDS="gegl libdrm-dev xorg-libXxf86vm-dev pkg-config"
40 ;;
41 esac
42 }