wok view babl/receipt @ rev 14399

evas_generic_loaders: remove wrong error trigger
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Apr 23 18:10:37 2013 +0200 (2013-04-23)
parents 71c4889c7559
children 7d6089953592
line source
1 # SliTaz package receipt.
3 PACKAGE="babl"
4 VERSION="0.1.10"
5 CATEGORY="system-tools"
6 SHORT_DESC="pixel format translation library."
7 MAINTAINER="erjo@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://gegl.org/babl/"
10 WGET_URL="ftp://ftp.gimp.org/pub/$PACKAGE/${VERSION:0:3}/$TARBALL"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 cd $src
16 ./configure \
17 $CONFIGURE_ARGS && \
18 make && make install
19 }
21 # Rules to gen a SliTaz package suitable for Tazpkg.
22 genpkg_rules()
23 {
24 mkdir -p $fs/usr/lib
25 cp -a $install/usr/lib/*.so* $fs/usr/lib
26 cp -a $install/usr/lib/babl-* $fs/usr/lib
27 rm $fs/usr/lib/babl-*/*.*a
28 }