author | Ray Rashif
<schiv@archlinux.org> 2010-08-08 21:50:16 UTC |
committer | Ray Rashif
<schiv@archlinux.org> 2010-08-08 21:50:16 UTC |
parent | c18c7ff6a5882e811bf25862e7124e1282b85eda |
ChangeLog | +0 | -4 |
PKGBUILD | +0 | -30 |
gcc44.patch | +0 | -14 |
diff --git a/ChangeLog b/ChangeLog deleted file mode 100644 index 9bcf84f..0000000 --- a/ChangeLog +++ /dev/null @@ -1,4 +0,0 @@ -26 Dec 2009 (GMT+8) Ray Rashif <schivmeister@gmail.com> - - * 2.1-1 - initial commit diff --git a/PKGBUILD b/PKGBUILD deleted file mode 100644 index 8c72265..0000000 --- a/PKGBUILD +++ /dev/null @@ -1,30 +0,0 @@ -# Maintainer: Ray Rashif <schivmeister@gmail.com> -# Contributor: Orivej Desh <smpuj@bk.ru> - -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) - -build() { - cd "$srcdir/$pkgname-$pkgver" - - # gcc 4.4 compatibility - patch -Np1 -i ../gcc44.patch || return 1 - - ./configure --prefix=/usr - make || return 1 - make DESTDIR="$pkgdir/" install - - install -Dm644 COPYING \ - "$pkgdir/usr/share/licenses/$pkgname/COPYING" -} -md5sums=('13252077a73987dae72a9174e529b6b9' - 'a07e3ef9c657a56cf2e8c4afc0ba1cec') diff --git a/gcc44.patch b/gcc44.patch deleted file mode 100644 index f559a7d..0000000 --- a/gcc44.patch +++ /dev/null @@ -1,14 +0,0 @@ -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 - {