wok annotate libmikmod/receipt @ rev 15473

Add some licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Nov 09 20:47:29 2013 +0000 (2013-11-09)
parents f5495d63c2cd
children 47db6c314932
rev   line source
pascal@13591 1 # SliTaz package receipt.
pascal@13591 2
pascal@13591 3 PACKAGE="libmikmod"
pascal@13591 4 VERSION="3.2.0"
pascal@13591 5 CATEGORY="development"
pascal@13591 6 SHORT_DESC="Mikmod module player library."
pascal@13591 7 MAINTAINER="paul@slitaz.org"
pascal@15473 8 LICENSE="LGPL2 LGPL2.1"
pascal@13591 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@13591 10 WEB_SITE="http://mikmod.shlomifish.org/"
pascal@13591 11 WGET_URL="http://mikmod.shlomifish.org/files/$TARBALL"
pascal@13591 12
pascal@13591 13 DEPENDS=""
pascal@13593 14 BUILD_DEPENDS="bash"
pascal@13591 15
pascal@13591 16 # Rules to configure and make the package.
pascal@13591 17 compile_rules()
pascal@13591 18 {
pascal@13591 19 cd $src
pascal@15277 20 touch macintosh/_libmikmodversion.r
pascal@13593 21 sed -i 's|\$(SHELL)|/bin/bash|' configure
pascal@13593 22 ./configure --prefix=/usr \
pascal@13593 23 $CONFIGURE_ARGS &&
pascal@13591 24 make && make install
pascal@13591 25 }
pascal@13591 26
pascal@13591 27 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@13591 28 genpkg_rules()
pascal@13591 29 {
pascal@13591 30 mkdir -p $fs/usr/lib
pascal@13591 31 cp -a $install/usr/lib/*.so* /$fs/usr/lib
pascal@13591 32 }
pascal@13591 33