wok-6.x annotate audacious-plugins/receipt @ rev 12250
readd ruby-gtk2 receipt (was missing)
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Mon Apr 09 19:42:41 2012 +0200 (2012-04-09) |
parents | 0d2856170146 |
children | 7d5af230ec9b |
rev | line source |
---|---|
mimas@2030 | 1 # SliTaz package receipt. |
mimas@2030 | 2 |
mimas@2030 | 3 PACKAGE="audacious-plugins" |
devl547@11314 | 4 VERSION="3.1" |
mimas@2030 | 5 CATEGORY="multimedia" |
mimas@2030 | 6 SHORT_DESC="Plugins for audacious music player" |
pankso@2044 | 7 MAINTAINER="mimas@slitaz.org" |
devl547@11314 | 8 SUGGESTED="lame neon libmms" |
slaxemulator@11004 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
mimas@2030 | 10 WEB_SITE="http://audacious-media-player.org/" |
mimas@2030 | 11 WGET_URL="http://distfiles.atheme.org/$TARBALL" |
mimas@2030 | 12 |
devl547@11314 | 13 DEPENDS="libxml2 libogg libvorbis alsa-lib flac dbus-glib libsndfile \ |
devl547@11314 | 14 libcdio libmad curl taglib libcomerr3 mpg123 faad2" |
erjo@9911 | 15 BUILD_DEPENDS="audacious-dev audacious neon flac-dev libogg-dev libvorbis-dev \ |
erjo@9911 | 16 libmowgli-dev alsa-lib-dev lame-dev libmad-dev libmad dbus-glib-dev \ |
devl547@11314 | 17 libmcs-dev libsamplerate-dev mpg123-dev faad2-dev" |
erjo@9911 | 18 |
mimas@2030 | 19 # Rules to configure and make the package. |
mimas@2030 | 20 compile_rules() |
mimas@2030 | 21 { |
mimas@2030 | 22 cd $src |
jozee@3487 | 23 sed -i "s/touch -t 0001010000 /touch /g" configure |
erjo@9911 | 24 #XML_CFLAGS=-I/usr/include/libxml2 |
mimas@2030 | 25 ./configure \ |
mimas@2030 | 26 --prefix=/usr \ |
mimas@2030 | 27 --infodir=/usr/share/info \ |
mimas@2030 | 28 --mandir=/usr/share/man \ |
mimas@2030 | 29 --disable-sse2 \ |
jozee@3487 | 30 --enable-chardet \ |
jozee@3487 | 31 --disable-esd --disable-pulse --disable-icecast \ |
jozee@3487 | 32 --disable-jack --disable-timidity --disable-evdevplug \ |
jozee@3487 | 33 --disable-rocklight --disable-lirc \ |
jozee@3487 | 34 --disable-bluetooth --disable-paranormal \ |
jozee@3487 | 35 --disable-projectm --disable-projectm-1.0 \ |
jozee@4512 | 36 --disable-ffaudio --disable-mtp_up \ |
pascal@2491 | 37 $CONFIGURE_ARGS && |
pascal@2491 | 38 make && |
erjo@9911 | 39 make DESTDIR=$DESTDIR install |
mimas@2030 | 40 } |
mimas@2030 | 41 |
mimas@2030 | 42 # Rules to gen a SliTaz package suitable for Tazpkg. |
mimas@2030 | 43 genpkg_rules() |
mimas@2030 | 44 { |
mimas@2030 | 45 mkdir -p $fs/usr/share/locale |
slaxemulator@11004 | 46 cp -a $install/usr/lib $fs/usr |
slaxemulator@11004 | 47 cp -a $install/usr/share/locale/fr $fs/usr/share/locale |
mimas@2030 | 48 } |
mimas@2030 | 49 |