wok view libmikmod/receipt @ rev 13593

libmikmod: force /bin/bash
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Nov 08 10:35:56 2012 +0100 (2012-11-08)
parents 4aed2b24febc
children f5495d63c2cd
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 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://mikmod.shlomifish.org/"
10 WGET_URL="http://mikmod.shlomifish.org/files/$TARBALL"
12 DEPENDS=""
13 BUILD_DEPENDS="bash"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 sed -i 's|\$(SHELL)|/bin/bash|' configure
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/lib
29 cp -a $install/usr/lib/*.so* /$fs/usr/lib
30 }