wok view taglib/receipt @ rev 3993

Upgrade: h8300-gcc (4.4.0 to 4.4.1)
author Matthew Sheets <rcx@zoominternet.net>
date Sat Aug 29 22:48:00 2009 +0000 (2009-08-29)
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 }