wok annotate libid3tag/receipt @ rev 15473

Add some licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Nov 09 20:47:29 2013 +0000 (2013-11-09)
parents 0f8dcbf8807b
children 73fb2ebfd59a
rev   line source
paul@1374 1 # SliTaz package receipt.
paul@1374 2
paul@1374 3 PACKAGE="libid3tag"
paul@1374 4 VERSION="0.15.1b"
paul@1374 5 CATEGORY="multimedia"
paul@1374 6 SHORT_DESC="ID3 tag manipulation library."
paul@1374 7 MAINTAINER="paul@slitaz.org"
pascal@15473 8 LICENSE="GPL2"
paul@1374 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
paul@1374 10 WEB_SITE="http://www.underbit.com/products/mad/"
paul@1374 11 WGET_URL="http://downloads.sourceforge.net/mad/$TARBALL"
paul@1374 12
pascal@15473 13 DEPENDS="zlib"
pascal@15473 14 BUILD_DEPENDS="zlib-dev"
pascal@15473 15
paul@1374 16 # Rules to configure and make the package.
paul@1374 17 compile_rules()
paul@1374 18 {
paul@1374 19 cd $src
paul@1374 20 ./configure --prefix=/usr $CONFIGURE_ARGS
paul@1374 21 make
pascal@15473 22 make DESTDIR=$DESTDIR install
paul@1374 23 }
paul@1374 24
paul@1374 25 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@1374 26 genpkg_rules()
paul@1374 27 {
paul@1374 28 mkdir -p $fs/usr/lib
pascal@15473 29 cp -a $install/usr/lib/*.so* $fs/usr/lib
paul@1374 30 }
paul@1374 31