wok view libid3tag/receipt @ rev 9040

Up: tazwok 4.2.4
author Antoine Bodin <gokhlayeh@slitaz.org>
date Fri Mar 04 02:43:18 2011 +0100 (2011-03-04)
parents
children 0f8dcbf8807b
line source
1 # SliTaz package receipt.
3 PACKAGE="libid3tag"
4 VERSION="0.15.1b"
5 CATEGORY="multimedia"
6 SHORT_DESC="ID3 tag manipulation library."
7 MAINTAINER="paul@slitaz.org"
8 DEPENDS="zlib"
9 BUILD_DEPENDS="zlib-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://www.underbit.com/products/mad/"
12 WGET_URL="http://downloads.sourceforge.net/mad/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr $CONFIGURE_ARGS
19 make
20 make DESTDIR=$PWD/_pkg install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/lib
27 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
28 strip --strip-unneeded $fs/usr/lib/*
29 }