Date: Sunday, August 8, 2010 @ 16:57:26 Author: schiv Revision: 86992
Brought new deps for ardour from community Added: lv2core/ lv2core/repos/ lv2core/trunk/ lv2core/trunk/PKGBUILD lv2core/trunk/lv2core.changelog rubberband/ rubberband/repos/ rubberband/trunk/ rubberband/trunk/PKGBUILD rubberband/trunk/rubberband.changelog slv2/ slv2/repos/ slv2/trunk/ slv2/trunk/PKGBUILD slv2/trunk/slv2.changelog slv2/trunk/slv2.install vamp-plugin-sdk/ vamp-plugin-sdk/repos/ vamp-plugin-sdk/trunk/ vamp-plugin-sdk/trunk/PKGBUILD vamp-plugin-sdk/trunk/gcc44.patch vamp-plugin-sdk/trunk/vamp-plugin-sdk.changelog -------------------------------------------------+ lv2core/trunk/PKGBUILD | 32 ++++++++++++++++++ lv2core/trunk/lv2core.changelog | 11 ++++++ rubberband/trunk/PKGBUILD | 30 +++++++++++++++++ rubberband/trunk/rubberband.changelog | 11 ++++++ slv2/trunk/PKGBUILD | 30 +++++++++++++++++ slv2/trunk/slv2.changelog | 11 ++++++ slv2/trunk/slv2.install | 14 ++++++++ vamp-plugin-sdk/trunk/PKGBUILD | 38 ++++++++++++++++++++++ vamp-plugin-sdk/trunk/gcc44.patch | 14 ++++++++ vamp-plugin-sdk/trunk/vamp-plugin-sdk.changelog | 11 ++++++ 10 files changed, 202 insertions(+) Added: lv2core/trunk/PKGBUILD =================================================================== --- lv2core/trunk/PKGBUILD (rev 0) +++ lv2core/trunk/PKGBUILD 2010-08-08 20:57:26 UTC (rev 86992) @@ -0,0 +1,32 @@ +# $Id$ +# Maintainer: Ray Rashif <[email protected]> + +pkgname=lv2core +pkgver=3.0 +pkgrel=1 +pkgdesc="LV2: Successor to the LADSPA audio plug-in standard" +url="http://lv2plug.in/" +license=('LGPL' 'custom') +arch=('i686' 'x86_64') +makedepends=('python') +changelog=$pkgname.changelog +source=(http://lv2plug.in/spec/$pkgname-$pkgver.tar.bz2) +md5sums=('382f7d96ff0374c0c495336e1c8bb999') + +build() { + cd "$srcdir/$pkgname-$pkgver" + + ./waf configure --prefix=/usr + ./waf build $MAKEFLAGS +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + + ./waf install --destdir="$pkgdir" + + install -Dm0644 COPYING \ + "$pkgdir/usr/share/licenses/$pkgname/COPYING" +} + +# vim:set ts=2 sw=2 et: Property changes on: lv2core/trunk/PKGBUILD ___________________________________________________________________ Added: svn:keywords + Id Added: lv2core/trunk/lv2core.changelog =================================================================== --- lv2core/trunk/lv2core.changelog (rev 0) +++ lv2core/trunk/lv2core.changelog 2010-08-08 20:57:26 UTC (rev 86992) @@ -0,0 +1,11 @@ +9 Aug 2010 (GMT+8) Ray Rashif <[email protected]> + + * 3.0-1 : + Brought into extra from community for slv2/ardour + - dep of slv2 + + * PKGBUILD : + Minor cosmetic ammendments. + + * lv2core.changelog : + Added this changelog. Added: rubberband/trunk/PKGBUILD =================================================================== --- rubberband/trunk/PKGBUILD (rev 0) +++ rubberband/trunk/PKGBUILD 2010-08-08 20:57:26 UTC (rev 86992) @@ -0,0 +1,30 @@ +# $Id$ +# Maintainer: Ray Rashif <[email protected]> +# Contributor: Felipe Machado aka arch_audio <[email protected]> + +pkgname=rubberband +pkgver=1.5.0 +pkgrel=1 +pkgdesc="Time-stretching and pitch-shifting audio library and utility" +arch=('i686' 'x86_64') +url="http://www.breakfastquay.com/rubberband/" +license=('GPL') +depends=('libsamplerate' 'fftw' 'vamp-plugin-sdk') +makedepends=('ladspa') +source=(http://code.breakfastquay.com/attachments/download/1/$pkgname-$pkgver.tar.bz2) +md5sums=('c5f288d644fcd46bd159e187bcc33f25') + +build() { + cd "$srcdir/$pkgname-$pkgver" + + ./configure --prefix=/usr + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + + make DESTDIR="$pkgdir/" install +} + +# vim:set ts=2 sw=2 et: Property changes on: rubberband/trunk/PKGBUILD ___________________________________________________________________ Added: svn:keywords + Id Added: rubberband/trunk/rubberband.changelog =================================================================== --- rubberband/trunk/rubberband.changelog (rev 0) +++ rubberband/trunk/rubberband.changelog 2010-08-08 20:57:26 UTC (rev 86992) @@ -0,0 +1,11 @@ +9 Aug 2010 (GMT+8) Ray Rashif <[email protected]> + + * 1.5.0-1 : + Brought into extra from community for ardour + - replaces soundtouch for enhanced functionality + + * PKGBUILD : + Minor cosmetic ammendments. + + * rubberband.changelog : + Added this changelog. Added: slv2/trunk/PKGBUILD =================================================================== --- slv2/trunk/PKGBUILD (rev 0) +++ slv2/trunk/PKGBUILD 2010-08-08 20:57:26 UTC (rev 86992) @@ -0,0 +1,30 @@ +# $Id$ +# Maintainer: Ray Rashif <[email protected]> +# Contributor: Leslie P. Polzer <[email protected]> + +pkgname=slv2 +pkgver=0.6.6 +pkgrel=2 +pkgdesc="Library for LV2 hosts" +arch=('i686' 'x86_64') +url="http://drobilla.net/software/slv2" +license=('GPL') +depends=('redland' 'lv2core' 'jack') +makedepends=('python') +install=$pkgname.install +changelog=$pkgname.changelog +source=(http://download.drobilla.net/$pkgname-$pkgver.tar.bz2) +md5sums=('b8e8e0e82dd04324fcd533e8acd1ce85') + +build() { + cd "$srcdir/$pkgname-$pkgver" + + ./waf configure --prefix=/usr + ./waf build $MAKEFLAGS +} + +package() { + ./waf install --destdir="$pkgdir/" +} + +# vim:set ts=2 sw=2 et: Property changes on: slv2/trunk/PKGBUILD ___________________________________________________________________ Added: svn:keywords + Id Added: slv2/trunk/slv2.changelog =================================================================== --- slv2/trunk/slv2.changelog (rev 0) +++ slv2/trunk/slv2.changelog 2010-08-08 20:57:26 UTC (rev 86992) @@ -0,0 +1,11 @@ +9 Aug 2010 (GMT+8) Ray Rashif <[email protected]> + + * 0.6.6-2 : + Brought into extra from community for ardour + - adds "LV2" plug-ins support + + * PKGBUILD : + Minor cosmetic ammendments. + + * slv2.changelog : + Added this changelog. Added: slv2/trunk/slv2.install =================================================================== --- slv2/trunk/slv2.install (rev 0) +++ slv2/trunk/slv2.install 2010-08-08 20:57:26 UTC (rev 86992) @@ -0,0 +1,14 @@ +post_install() { + echo "Updating Shared Library Links" + /sbin/ldconfig +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} + +# vim:set ts=2 sw=2 et: Added: vamp-plugin-sdk/trunk/PKGBUILD =================================================================== --- vamp-plugin-sdk/trunk/PKGBUILD (rev 0) +++ vamp-plugin-sdk/trunk/PKGBUILD 2010-08-08 20:57:26 UTC (rev 86992) @@ -0,0 +1,38 @@ +# $Id$ +# Maintainer: Ray Rashif <[email protected]> +# Contributor: Orivej Desh <[email protected]> + +pkgname=vamp-plugin-sdk +pkgver=2.1 +pkgrel=1 +pkgdesc="The Vamp audio analysis plugin system" +arch=('i686' 'x86_64') +url="http://www.vamp-plugins.org/" +license=('BSD') +depends=('gcc-libs' 'libsndfile') +#options=('!libtool') +source=(http://downloads.sourceforge.net/vamp/$pkgname-$pkgver.tar.gz + gcc44.patch) +md5sums=('13252077a73987dae72a9174e529b6b9' + 'a07e3ef9c657a56cf2e8c4afc0ba1cec') + +build() { + cd "$srcdir/$pkgname-$pkgver" + + # gcc 4.4 compatibility + patch -Np1 -i ../gcc44.patch + + ./configure --prefix=/usr + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + + make DESTDIR="$pkgdir/" install + + install -Dm644 COPYING \ + "$pkgdir/usr/share/licenses/$pkgname/COPYING" +} + +# vim:set ts=2 sw=2 et: Property changes on: vamp-plugin-sdk/trunk/PKGBUILD ___________________________________________________________________ Added: svn:keywords + Id Added: vamp-plugin-sdk/trunk/gcc44.patch =================================================================== --- vamp-plugin-sdk/trunk/gcc44.patch (rev 0) +++ vamp-plugin-sdk/trunk/gcc44.patch 2010-08-08 20:57:26 UTC (rev 86992) @@ -0,0 +1,14 @@ +diff -ur vamp-plugin-sdk-2.0.orig/examples/FixedTempoEstimator.cpp vamp-plugin-sdk-2.0/examples/FixedTempoEstimator.cpp +--- vamp-plugin-sdk-2.0.orig/examples/FixedTempoEstimator.cpp 2008-12-01 13:48:41.000000000 +0200 ++++ vamp-plugin-sdk-2.0/examples/FixedTempoEstimator.cpp 2009-06-06 00:57:58.000000000 +0300 +@@ -43,9 +43,9 @@ + + using Vamp::RealTime; + ++#include <cstdio> + #include <cmath> + +- + class FixedTempoEstimator::D + // this class just avoids us having to declare any data members in the header + { Added: vamp-plugin-sdk/trunk/vamp-plugin-sdk.changelog =================================================================== --- vamp-plugin-sdk/trunk/vamp-plugin-sdk.changelog (rev 0) +++ vamp-plugin-sdk/trunk/vamp-plugin-sdk.changelog 2010-08-08 20:57:26 UTC (rev 86992) @@ -0,0 +1,11 @@ +9 Aug 2010 (GMT+8) Ray Rashif <[email protected]> + + * 2.1-1 : + Brought into extra from community for rubberband/ardour + - dep of rubberband + + * PKGBUILD : + Minor cosmetic ammendments. + + * vamp-plugin-sdk.changelog : + Added this changelog.
