wok view libtag/receipt @ rev 2040

Up: pidgin (2.5.4)
author Christophe Lincoln <pankso@slitaz.org>
date Thu Jan 15 13:01:53 2009 +0100 (2009-01-15)
parents
children
line source
1 # SliTaz package receipt.
3 PACKAGE="libtag"
4 SOURCE="taglib"
5 VERSION="1.5"
6 CATEGORY="multimedia"
7 SHORT_DESC="TagLib is a library for reading and editing the meta-data of several popular audio formats."
8 MAINTAINER="chadi.elahmad@gmail.com"
10 TARBALL="$SOURCE-$VERSION.tar.gz"
11 WEB_SITE="http://developer.kde.org/~wheeler/taglib.html"
12 WGET_URL="http://developer.kde.org/~wheeler/files/src/$TARBALL"
14 DEPENDS="zlib "
15 BUILD_DEPENDS="zlib-dev "
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure \
22 --prefix=/usr \
23 --mandir=/usr/share/man \
24 --infodir=/usr/share/info \
25 $CONFIGURE_ARGS
26 make
27 make DESTDIR=$PWD/_pkg install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/lib
34 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
35 }