wok view libmodplug/receipt @ rev 15709

Up:Postfix (2.10.2) + Add SSL support
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Sun Dec 22 22:07:24 2013 +0100 (2013-12-22)
parents b7319995b37e
children 53082fab5f1e
line source
1 # SliTaz package receipt.
3 PACKAGE="libmodplug"
4 VERSION="0.8.8.1"
5 CATEGORY="multimedia"
6 SHORT_DESC="A MOD playing library"
7 MAINTAINER="jozee@slitaz.org"
8 LICENSE="PublicDomain"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://modplug-xmms.sourceforge.net/"
11 WGET_URL="http://downloads.sf.net/sourceforge/modplug-xmms/$TARBALL"
13 DEPENDS="gcc-lib-base"
14 BUILD_DEPENDS="gcc-lib-base"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure --prefix=/usr $CONFIGURE_ARGS
21 make
22 make DESTDIR=$DESTDIR 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 $install/usr/lib/*.so* $fs/usr/lib
30 }