wok view mpg123/receipt @ rev 12099

sarg-php: Fix perm
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Sun Mar 11 02:56:40 2012 +0100 (2012-03-11)
parents 6b5b87dc47c5
children f7b559e8d31d
line source
1 # SliTaz package receipt.
3 PACKAGE="mpg123"
4 VERSION="1.13.4"
5 CATEGORY="multimedia"
6 SHORT_DESC="Command line audio player and streamer"
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="alsa-lib libltdl esound openal portaudio libsdl"
9 BUILD_DEPENDS="alsa-lib-dev libtool"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://www.mpg123.de/"
12 WGET_URL="http://www.mpg123.de/download/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 --mandir=/usr/share/man \
21 --with-default-audio=alsa \
22 $CONFIGURE_ARGS &&
23 make &&
24 make install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 # mpg123 needs the plugins libtool library file (.la) to work.
31 mkdir -p $fs/usr/lib
32 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
33 cp -a $_pkg/usr/lib/mpg123 $fs/usr/lib
34 cp -a $_pkg/usr/include $fs/usr
35 cp -a $_pkg/usr/bin $fs/usr
36 }