wok view gegl/receipt @ rev 21821

syslinux/kbd: check kbd malloc pointer (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Aug 25 12:03:28 2019 +0200 (2019-08-25)
parents ec8a5b44e2fd
children 05c8d8d9d934
line source
1 # SliTaz package receipt.
3 PACKAGE="gegl"
4 VERSION="0.3.12"
5 CATEGORY="system-tools"
6 SHORT_DESC="Generic Graphics Library"
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL3"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://gegl.org/"
11 WGET_URL="http://download.gimp.org/pub/$PACKAGE/${VERSION%.*}/$TARBALL"
12 HOST_ARCH="i486 arm"
14 DEPENDS="babl expat gtk+ jpeg xorg-libX11"
15 BUILD_DEPENDS="babl-dev expat-dev gtk+-dev jasper-dev json-glib-dev \
16 util-linux-mount-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 # Keep gegl light so we can make smaller gimp LiveCD flavors
22 ./configure \
23 --disable-docs \
24 --without-sdl \
25 --without-librsvg \
26 --without-graphviz \
27 --without-lua \
28 --without-libavformat \
29 --without-libv4l \
30 $CONFIGURE_ARGS &&
31 make && make install
32 }
34 # Rules to gen a SliTaz package suitable for Tazpkg.
35 genpkg_rules()
36 {
37 mkdir -p $fs/usr/lib
38 cp -a $install/usr/bin $fs/usr
39 cp -a $install/usr/lib/*.so* $fs/usr/lib
40 cp -a $install/usr/lib/gegl-* $fs/usr/lib
41 rm $fs/usr/lib/gegl-*/*.*a
42 }