wok view mikmod/receipt @ rev 16324

connman-ui: set a meaningful name to the source for mirror:/source/packages-cooking/
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Apr 10 11:04:26 2014 +0000 (2014-04-10)
parents 4aed2b24febc
children 47db6c314932
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 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://mikmod.shlomifish.org/"
11 WGET_URL="http://mikmod.shlomifish.org/files/$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 cd $src
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 }