wok annotate libmodplug/receipt @ rev 10733

Up: cookutils-daemon to 1.3.
author Christopher Rogers <slaxemulator@gmail.com>
date Sun May 29 02:02:23 2011 +0000 (2011-05-29)
parents 8752c40cc534
children b7319995b37e
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
jozee@2658 18 ./configure --prefix=/usr
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 }