wok annotate audacious-plugins/receipt @ rev 6717

Bumped aufs-utils.
author Christopher Rogers <slaxemulator@gmail.com>
date Thu Oct 14 12:40:34 2010 +0000 (2010-10-14)
parents 33b6564294f6
children 4c070597a08f
rev   line source
mimas@2030 1 # SliTaz package receipt.
mimas@2030 2
mimas@2030 3 PACKAGE="audacious-plugins"
slaxemulator@6152 4 VERSION="2.4.0"
mimas@2030 5 CATEGORY="multimedia"
mimas@2030 6 SHORT_DESC="Plugins for audacious music player"
pankso@2044 7 MAINTAINER="mimas@slitaz.org"
gokhlayeh@6485 8 DEPENDS="libxml2 libogg libvorbis alsa-lib flac dbus-glib libsndfile libcdio libmad curl taglib libcomerr3"
slaxemulator@5364 9 BUILD_DEPENDS="audacious-dev audacious neon flac-dev libogg-dev libvorbis-dev alsa-lib-dev lame-dev libmad-dev libmad dbus-glib-dev"
pascal@4998 10 SUGGESTED="lame faad2 neon libmms"
jozee@3487 11 TARBALL="$PACKAGE-$VERSION.tgz"
mimas@2030 12 WEB_SITE="http://audacious-media-player.org/"
mimas@2030 13 WGET_URL="http://distfiles.atheme.org/$TARBALL"
mimas@2030 14
mimas@2030 15 # Rules to configure and make the package.
mimas@2030 16 compile_rules()
mimas@2030 17 {
mimas@2030 18 cd $src
jozee@3487 19 sed -i "s/touch -t 0001010000 /touch /g" configure
mimas@2030 20 ./configure \
mimas@2030 21 --prefix=/usr \
mimas@2030 22 --infodir=/usr/share/info \
mimas@2030 23 --mandir=/usr/share/man \
mimas@2030 24 --disable-sse2 \
jozee@3487 25 --enable-chardet \
jozee@3487 26 --disable-esd --disable-pulse --disable-icecast \
jozee@3487 27 --disable-jack --disable-timidity --disable-evdevplug \
jozee@3487 28 --disable-rocklight --disable-lirc \
jozee@3487 29 --disable-bluetooth --disable-paranormal \
jozee@3487 30 --disable-projectm --disable-projectm-1.0 \
jozee@4512 31 --disable-ffaudio --disable-mtp_up \
pascal@2491 32 $CONFIGURE_ARGS &&
pascal@2491 33 make &&
mimas@2030 34 make DESTDIR=$PWD/_pkg install
mimas@2030 35 }
mimas@2030 36
mimas@2030 37 # Rules to gen a SliTaz package suitable for Tazpkg.
mimas@2030 38 genpkg_rules()
mimas@2030 39 {
mimas@2030 40 mkdir -p $fs/usr/share/locale
mimas@2030 41 cp -a $_pkg/usr/lib $fs/usr
pascal@2550 42 #cp -a $_pkg/usr/share/audacious $fs/usr/share
mimas@2030 43 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
mimas@2030 44 }
mimas@2030 45