wok-stable annotate audacious-plugins/receipt @ rev 4403
get-opera: download stable version
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon Oct 19 18:56:55 2009 +0200 (2009-10-19) |
parents | c348ac291a32 |
children | a8ca1e0896fe |
rev | line source |
---|---|
mimas@2030 | 1 # SliTaz package receipt. |
mimas@2030 | 2 |
mimas@2030 | 3 PACKAGE="audacious-plugins" |
jozee@3487 | 4 VERSION="2.0.1" |
mimas@2030 | 5 CATEGORY="multimedia" |
mimas@2030 | 6 SHORT_DESC="Plugins for audacious music player" |
pankso@2044 | 7 MAINTAINER="mimas@slitaz.org" |
jozee@3487 | 8 DEPENDS="audacious curl libxml2 libogg libvorbis alsa-lib lame flac dbus-glib taglib libsndfile libcdio libmad" |
jozee@3487 | 9 BUILD_DEPENDS="audacious-dev audacious neon flac-dev libogg-dev libvorbis-dev alsa-lib-dev lame-dev libmad-dev libmad" |
jozee@3487 | 10 TARBALL="$PACKAGE-$VERSION.tgz" |
mimas@2030 | 11 WEB_SITE="http://audacious-media-player.org/" |
mimas@2030 | 12 WGET_URL="http://distfiles.atheme.org/$TARBALL" |
mimas@2030 | 13 |
mimas@2030 | 14 # Rules to configure and make the package. |
mimas@2030 | 15 compile_rules() |
mimas@2030 | 16 { |
mimas@2030 | 17 cd $src |
jozee@3487 | 18 sed -i "s/touch -t 0001010000 /touch /g" configure |
mimas@2030 | 19 ./configure \ |
mimas@2030 | 20 --prefix=/usr \ |
mimas@2030 | 21 --infodir=/usr/share/info \ |
mimas@2030 | 22 --mandir=/usr/share/man \ |
mimas@2030 | 23 --disable-sse2 \ |
jozee@3487 | 24 --enable-chardet \ |
jozee@3487 | 25 --disable-esd --disable-pulse --disable-icecast \ |
jozee@3487 | 26 --disable-jack --disable-timidity --disable-evdevplug \ |
jozee@3487 | 27 --disable-rocklight --disable-lirc \ |
jozee@3487 | 28 --disable-bluetooth --disable-paranormal \ |
jozee@3487 | 29 --disable-projectm --disable-projectm-1.0 \ |
pascal@2491 | 30 $CONFIGURE_ARGS && |
pascal@2491 | 31 make && |
mimas@2030 | 32 make DESTDIR=$PWD/_pkg install |
mimas@2030 | 33 } |
mimas@2030 | 34 |
mimas@2030 | 35 # Rules to gen a SliTaz package suitable for Tazpkg. |
mimas@2030 | 36 genpkg_rules() |
mimas@2030 | 37 { |
mimas@2030 | 38 mkdir -p $fs/usr/share/locale |
mimas@2030 | 39 cp -a $_pkg/usr/lib $fs/usr |
pascal@2550 | 40 #cp -a $_pkg/usr/share/audacious $fs/usr/share |
mimas@2030 | 41 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale |
mimas@2030 | 42 } |
mimas@2030 | 43 |