wok annotate 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
rev   line source
pascal@13591 1 # SliTaz package receipt.
pascal@13591 2
pascal@13591 3 PACKAGE="mikmod"
pascal@13591 4 VERSION="3.2.2"
pascal@13591 5 CATEGORY="multimedia"
pascal@13591 6 SHORT_DESC="Mikmod module player."
pascal@13591 7 MAINTAINER="paul@slitaz.org"
pascal@13591 8 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@13591 9 WEB_SITE="http://mikmod.shlomifish.org/"
pascal@13591 10 WGET_URL="http://mikmod.shlomifish.org/files/$TARBALL"
pascal@13591 11
pascal@13591 12 DEPENDS="ncurses libmikmod"
pascal@13591 13 BUILD_DEPENDS="ncurses-dev libmikmod-dev"
pascal@13591 14
pascal@13591 15 # Rules to configure and make the package.
pascal@13591 16 compile_rules()
pascal@13591 17 {
pascal@13591 18 cd $src
pascal@13591 19 ./configure --prefix=/usr \
pascal@13591 20 $CONFIGURE_ARGS &&
pascal@13591 21 make && make install
pascal@13591 22 }
pascal@13591 23
pascal@13591 24 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@13591 25 genpkg_rules()
pascal@13591 26 {
pascal@13591 27 mkdir -p $fs/usr/share
pascal@13591 28 cp -a $install/usr/bin $fs/usr
pascal@13591 29 cp -a $install/usr/share/mikmod $fs/usr/share
pascal@13591 30 }
pascal@13591 31