wok annotate audacious-plugins/receipt @ rev 9015
Up: libvalhalla to 2.0.0.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Thu Mar 03 13:45:18 2011 +0000 (2011-03-03) |
parents | f848db2fb8ef |
children | dc9eda924af6 |
rev | line source |
---|---|
mimas@2030 | 1 # SliTaz package receipt. |
mimas@2030 | 2 |
mimas@2030 | 3 PACKAGE="audacious-plugins" |
slaxemulator@8847 | 4 VERSION="2.4.4" |
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 |