wok annotate libmodplug/receipt @ rev 14781

Add some licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Jul 05 13:51:55 2013 +0200 (2013-07-05)
parents fc8fb9c142e9
children 8f447cf2eee5
rev   line source
jozee@2658 1 # SliTaz package receipt.
jozee@2658 2
jozee@2658 3 PACKAGE="libmodplug"
slaxemulator@6382 4 VERSION="0.8.8.1"
jozee@2658 5 CATEGORY="multimedia"
jozee@2658 6 SHORT_DESC="A MOD playing library"
jozee@2658 7 MAINTAINER="jozee@slitaz.org"
pascal@5003 8 DEPENDS="gcc-lib-base"
jozee@2658 9 BUILD_DEPENDS="gcc-lib-base"
jozee@2658 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
jozee@2658 11 WEB_SITE="http://modplug-xmms.sourceforge.net/"
jozee@2658 12 WGET_URL="http://downloads.sf.net/sourceforge/modplug-xmms/$TARBALL"
jozee@2658 13
jozee@2658 14 # Rules to configure and make the package.
jozee@2658 15 compile_rules()
jozee@2658 16 {
jozee@2658 17 cd $src
gokhlayeh@11573 18 ./configure --prefix=/usr $CONFIGURE_ARGS
jozee@2658 19 make
jozee@2658 20 make DESTDIR=$PWD/_pkg install
jozee@2658 21 }
jozee@2658 22
jozee@2658 23 # Rules to gen a SliTaz package suitable for Tazpkg.
jozee@2658 24 genpkg_rules()
jozee@2658 25 {
jozee@2658 26 mkdir -p $fs/usr/lib
jozee@2658 27 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
jozee@2658 28
jozee@2658 29 }