wok annotate libmodplug/receipt @ rev 2886

pekwm: add custom keys, start and improve menu
author Rohit Joshi <jozee@slitaz.org>
date Mon May 04 12:27:31 2009 +0000 (2009-05-04)
parents
children 87b2c31fbfe6
rev   line source
jozee@2658 1 # SliTaz package receipt.
jozee@2658 2
jozee@2658 3 PACKAGE="libmodplug"
jozee@2658 4 VERSION="0.8.4"
jozee@2658 5 CATEGORY="multimedia"
jozee@2658 6 SHORT_DESC="A MOD playing library"
jozee@2658 7 MAINTAINER="jozee@slitaz.org"
jozee@2658 8 DEPENDS=""
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 }