wok view mikmod/receipt @ rev 13595

Up python-cython (0.17.1)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Nov 08 15:49:28 2012 +0100 (2012-11-08)
parents
children 380ffe05937a
line source
1 # SliTaz package receipt.
3 PACKAGE="mikmod"
4 VERSION="3.2.2"
5 CATEGORY="multimedia"
6 SHORT_DESC="Mikmod module player."
7 MAINTAINER="paul@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://mikmod.shlomifish.org/"
10 WGET_URL="http://mikmod.shlomifish.org/files/$TARBALL"
12 DEPENDS="ncurses libmikmod"
13 BUILD_DEPENDS="ncurses-dev libmikmod-dev"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure --prefix=/usr \
20 $CONFIGURE_ARGS &&
21 make && make install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/share
28 cp -a $install/usr/bin $fs/usr
29 cp -a $install/usr/share/mikmod $fs/usr/share
30 }