wok view libmikmod/receipt @ rev 15593

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