wok view mpg123/receipt @ rev 812

Up mpg123 (1.4.2)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri May 16 08:36:59 2008 +0000 (2008-05-16)
parents ef8e8cbd385e
children d80ca24df53c
line source
1 # SliTaz package receipt.
3 PACKAGE="mpg123"
4 VERSION="1.4.2"
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 }