wok-current annotate libtag/receipt @ rev 1645
Add babl, babl-dev, gegl, gegl-dev. Pave the road to Gimp 2.6
author | Eric Joseph-Alexandre <erjo@slitaz.org> |
---|---|
date | Sat Nov 08 13:31:14 2008 +0000 (2008-11-08) |
parents | |
children |
rev | line source |
---|---|
pascal@1136 | 1 # SliTaz package receipt. |
pascal@1136 | 2 |
pascal@1136 | 3 PACKAGE="libtag" |
pascal@1136 | 4 SOURCE="taglib" |
pascal@1136 | 5 VERSION="1.5" |
pascal@1136 | 6 CATEGORY="multimedia" |
pascal@1136 | 7 SHORT_DESC="TagLib is a library for reading and editing the meta-data of several popular audio formats." |
pascal@1136 | 8 MAINTAINER="chadi.elahmad@gmail.com" |
pascal@1136 | 9 |
pascal@1136 | 10 TARBALL="$SOURCE-$VERSION.tar.gz" |
pascal@1136 | 11 WEB_SITE="http://developer.kde.org/~wheeler/taglib.html" |
pascal@1136 | 12 WGET_URL="http://developer.kde.org/~wheeler/files/src/$TARBALL" |
pascal@1136 | 13 |
pascal@1136 | 14 DEPENDS="zlib " |
pascal@1136 | 15 BUILD_DEPENDS="zlib-dev " |
pascal@1136 | 16 |
pascal@1136 | 17 # Rules to configure and make the package. |
pascal@1136 | 18 compile_rules() |
pascal@1136 | 19 { |
pascal@1136 | 20 cd $src |
pascal@1136 | 21 ./configure \ |
pascal@1136 | 22 --prefix=/usr \ |
pascal@1136 | 23 --mandir=/usr/share/man \ |
pascal@1136 | 24 --infodir=/usr/share/info \ |
pascal@1136 | 25 $CONFIGURE_ARGS |
pascal@1136 | 26 make |
pascal@1136 | 27 make DESTDIR=$PWD/_pkg install |
pascal@1136 | 28 } |
pascal@1136 | 29 |
pascal@1136 | 30 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@1136 | 31 genpkg_rules() |
pascal@1136 | 32 { |
pascal@1136 | 33 mkdir -p $fs/usr/lib |
pascal@1136 | 34 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib |
pascal@1136 | 35 } |