wok-next annotate mikmod/receipt @ rev 20616

xrdp: up 0.9.3.1; zopfli: fix build; gcc61: attempt to fix; add gcc6 (latest among 6.x.x).
gcc61 and gcc6 are broken now.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Apr 21 05:15:11 2018 +0300 (2018-04-21)
parents 17e313b5b9c1
children f48456621a9d
rev   line source
pascal@13591 1 # SliTaz package receipt.
pascal@13591 2
pascal@13591 3 PACKAGE="mikmod"
devl547@16408 4 VERSION="3.2.5"
pascal@13591 5 CATEGORY="multimedia"
pascal@13591 6 SHORT_DESC="Mikmod module player."
pascal@13591 7 MAINTAINER="paul@slitaz.org"
pascal@15000 8 LICENSE="GPL2"
pascal@13591 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@13591 10 WEB_SITE="http://mikmod.shlomifish.org/"
devl547@16408 11 WGET_URL="http://downloads.sourceforge.net/project/mikmod/$PACKAGE/$VERSION/$TARBALL"
pascal@13591 12
pascal@13591 13 DEPENDS="ncurses libmikmod"
pascal@13591 14 BUILD_DEPENDS="ncurses-dev libmikmod-dev"
pascal@13591 15
pascal@13591 16 # Rules to configure and make the package.
pascal@13591 17 compile_rules()
pascal@13591 18 {
pascal@17670 19 ./configure --prefix=/usr \
pascal@17670 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 }