# HG changeset patch # User Aleksej Bobylev # Date 1426248990 -7200 # Node ID 16e82a4c23da18dc05daa2a09e04ceecc6becd2f # Parent 3cdbf45eef894d0deaa3848c0362469399ef6aca Add: audacious (3.6): back to gtk2! (it needs the new GCC to compile, so it's early for cooking wok) diff -r 3cdbf45eef89 -r 16e82a4c23da audacious-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/audacious-dev/receipt Fri Mar 13 14:16:30 2015 +0200 @@ -0,0 +1,20 @@ +# SliTaz package receipt. + +PACKAGE="audacious-dev" +VERSION="3.6" +CATEGORY="development" +SHORT_DESC="Audacious development files" +WEB_SITE="http://audacious-media-player.org/" +MAINTAINER="mimas@slitaz.org" +LICENSE="GPL" +WANTED="audacious" + +DEPENDS="pkg-config libguess-dev" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $install/usr/include $fs/usr + cp -a $install/usr/lib/pkgconfig $fs/usr/lib +} diff -r 3cdbf45eef89 -r 16e82a4c23da audacious-plugins/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/audacious-plugins/receipt Fri Mar 13 14:16:30 2015 +0200 @@ -0,0 +1,40 @@ +# SliTaz package receipt. + +PACKAGE="audacious-plugins" +VERSION="3.6" +CATEGORY="multimedia" +SHORT_DESC="Plugins for audacious music player" +MAINTAINER="mimas@slitaz.org" +LICENSE="MIT" +TARBALL="$PACKAGE-$VERSION.tar.bz2" +WEB_SITE="http://audacious-media-player.org/" +WGET_URL="http://distfiles.audacious-media-player.org/$TARBALL" + +SUGGESTED="curl faad2 ffmpeg flac fluidsynth jack-audio-connection-kit lame \ +libcddb libcdio libcue libmad libmms libmodplug libnotify libsamplerate \ +libsndfile libvorbis lirc mpg123 neon taglib wavpack" +DEPENDS="alsa-lib dbus-glib" +BUILD_DEPENDS="gtk+-dev audacious-dev libguess-dev zlib-dev mpg123-dev \ +dbus-glib-dev lirc-dev xorg-libXcomposite-dev libnotify-dev libvorbis-dev \ +flac-dev wavpack-dev faad2-dev libsndfile-dev libmodplug-dev ffmpeg-dev \ +jack-audio-connection-kit-dev alsa-lib-dev fluidsynth-dev libcdio-dev \ +libcddb-dev curl-dev neon-dev libmms-dev libcue-dev lame-dev libsamplerate-dev" + +# Rules to configure and make the package. +compile_rules() +{ + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var \ + $CONFIGURE_ARGS && + make && + make DESTDIR=$DESTDIR install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cp -a $install/usr $fs + rm -rf $fs/usr/share/locale +} diff -r 3cdbf45eef89 -r 16e82a4c23da audacious/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/audacious/receipt Fri Mar 13 14:16:30 2015 +0200 @@ -0,0 +1,38 @@ +# SliTaz package receipt. + +PACKAGE="audacious" +VERSION="3.6" +CATEGORY="multimedia" +SHORT_DESC="Audacious is a versatile and handy multi platform media player" +MAINTAINER="mimas@slitaz.org" +LICENSE="GPL" +TARBALL="$PACKAGE-$VERSION.tar.bz2" +WEB_SITE="http://audacious-media-player.org/" +WGET_URL="http://distfiles.audacious-media-player.org/$TARBALL" +TAGS="music audio player mp3 ogg m4a" + +DEPENDS="gtk+ libguess audacious-plugins" +BUILD_DEPENDS="gtk+-dev libguess-dev" + +# Rules to configure and make the package. +compile_rules() +{ + TPUT=/bin/true ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --with-buildstamp="SliTaz" \ + $CONFIGURE_ARGS && + make build_env=host && + make DESTDIR=$DESTDIR install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/share $fs/usr/lib $fs/usr/bin + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/lib/*.so* $fs/usr/lib/ + cp -a $install/usr/share/$PACKAGE $fs/usr/share + cp -a $install/usr/share/icons $fs/usr/share +}