wok view audacious-plugins/receipt @ rev 2218

Remove libtag
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Feb 12 08:58:48 2009 +0000 (2009-02-12)
parents e7476a635880
children 7a436db659a4
line source
1 # SliTaz package receipt.
3 PACKAGE="audacious-plugins"
4 VERSION="1.5.1"
5 CATEGORY="multimedia"
6 SHORT_DESC="Plugins for audacious music player"
7 MAINTAINER="mimas@slitaz.org"
8 DEPENDS="audacious neon libogg libvorbis alsa-lib lame flac"
9 BUILD_DEPENDS="audacious-dev audacious neon flac-dev libogg-dev libvorbis-dev alsa-lib-dev lame-dev"
10 TARBALL="$PACKAGE-$VERSION.tbz2"
11 WEB_SITE="http://audacious-media-player.org/"
12 WGET_URL="http://distfiles.atheme.org/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 --infodir=/usr/share/info \
21 --mandir=/usr/share/man \
22 --disable-sse2 \
23 $CONFIGURE_ARGS
24 make
25 make DESTDIR=$PWD/_pkg install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/share/locale
32 cp -a $_pkg/usr/lib $fs/usr
33 cp -a $_pkg/usr/share/audacious $fs/usr/share
34 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
35 }