wok view mikmod/receipt @ rev 13841

get-LibreOffice: busybox does not support ? wildcard anymore. bug?
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jan 08 10:29:56 2013 +0100 (2013-01-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 }