wok view mikmod/receipt @ rev 18897

syslinux/isohybrid.exe add -r support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Feb 14 22:06:06 2016 +0100 (2016-02-14)
parents 47db6c314932
children affc83ed930e
line source
1 # SliTaz package receipt.
3 PACKAGE="mikmod"
4 VERSION="3.2.5"
5 CATEGORY="multimedia"
6 SHORT_DESC="Mikmod module player."
7 MAINTAINER="paul@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://mikmod.shlomifish.org/"
11 WGET_URL="http://downloads.sourceforge.net/project/mikmod/$PACKAGE/$VERSION/$TARBALL"
13 DEPENDS="ncurses libmikmod"
14 BUILD_DEPENDS="ncurses-dev libmikmod-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 export LDFLAGS="$LDFLAGS -ltinfo"
20 ./configure --prefix=/usr \
21 $CONFIGURE_ARGS &&
22 make && make install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/share
29 cp -a $install/usr/bin $fs/usr
30 cp -a $install/usr/share/mikmod $fs/usr/share
31 }