wok-next view gegl/receipt @ rev 20533

cairo-clock, grub4dos: fix CFLAGS
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Mar 27 12:50:45 2018 +0200 (2018-03-27)
parents 4396aed7eb01
children a5d7827e08cf
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"
40 ;;
41 esac
42 }