wok view mpg123/receipt @ rev 4153

xv provides liblzma
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Sep 21 13:37:43 2009 +0200 (2009-09-21)
parents 2ff1cea175be
children 43851b0813ec
line source
1 # SliTaz package receipt.
3 PACKAGE="mpg123"
4 VERSION="1.8.0"
5 CATEGORY="multimedia"
6 SHORT_DESC="Command line audi player and streamer"
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="alsa-lib libtool"
9 BUILD_DEPENDS="alsa-lib-dev"
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-audio="alsa" \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 # mpg123 need 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/bin $fs/usr
35 }