wok view libmodplug/receipt @ rev 3714

Up: midori (0.1.8)
author Mallory Mollo <mallory@sweetpeople.org>
date Tue Jul 21 17:46:09 2009 +0200 (2009-07-21)
parents 248560d462c3
children 437106c908f9
line source
1 # SliTaz package receipt.
3 PACKAGE="libmodplug"
4 VERSION="0.8.6"
5 CATEGORY="multimedia"
6 SHORT_DESC="A MOD playing library"
7 MAINTAINER="jozee@slitaz.org"
8 DEPENDS=""
9 BUILD_DEPENDS="gcc-lib-base"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://modplug-xmms.sourceforge.net/"
12 WGET_URL="http://downloads.sf.net/sourceforge/modplug-xmms/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr
19 make
20 make DESTDIR=$PWD/_pkg install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/lib
27 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
29 }