wok view mpg123/receipt @ rev 473

Up: slitaz-configs (1.4) + slitaz-boot-scripts (1.8.1)
author Christophe Lincoln <pankso@slitaz.org>
date Fri Mar 21 14:01:39 2008 +0100 (2008-03-21)
parents 16e4ef87e466
children 8086d3586b5f
line source
1 # SliTaz package receipt.
3 PACKAGE="mpg123"
4 VERSION="1.2.0"
5 CATEGORY="multimedia"
6 SHORT_DESC="Command line audi player and streamer"
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="alsa-lib"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.mpg123.de/"
11 WGET_URL="http://www.mpg123.de/download/$TARBALL"
12 HANDBOOK_URL='http://www.slitaz.org/doc/handbook/multimedia.html#mpg123'
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 $CONFIGURE_ARGS
22 make
23 make DESTDIR=$PWD/_pkg install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib/mpg123
30 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
31 cp -a $_pkg/usr/lib/mpg123/*.so* $fs/usr/lib/mpg123
32 cp -a $_pkg/usr/bin $fs/usr
33 }