wok view taglib/receipt @ rev 3890

pyvnc2swf: fix wget_url
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Aug 13 16:29:41 2009 +0200 (2009-08-13)
parents 074b3c2adfb8
children 866fa2493b1b
line source
1 # SliTaz package receipt.
3 PACKAGE="taglib"
4 VERSION="1.5"
5 CATEGORY="multimedia"
6 SHORT_DESC="Audio tag library."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://developer.kde.org/~wheeler/taglib.html"
10 WGET_URL="http://developer.kde.org/~wheeler/files/src/$TARBALL"
11 DEPENDS="zlib"
12 BUILD_DEPENDS="zlib-dev"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 $CONFIGURE_ARGS
21 make
22 make DESTDIR=$PWD/_pkg install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
30 }