summaryrefslogtreecommitdiff
path: root/community/caps/PKGBUILD
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-08-14 01:35:52 -0700
committerroot <root@rshg054.dnsready.net>2013-08-14 01:35:52 -0700
commit35ddd3815641e4564d75c5b402f7f0cf48628167 (patch)
treec182205aac34cc99f9059a2e5f5d2c823a7bb258 /community/caps/PKGBUILD
parent67ed1f749df552e8649438980b92b257f868eb8d (diff)
Wed Aug 14 01:35:17 PDT 2013
Diffstat (limited to 'community/caps/PKGBUILD')
-rw-r--r--community/caps/PKGBUILD31
1 files changed, 31 insertions, 0 deletions
diff --git a/community/caps/PKGBUILD b/community/caps/PKGBUILD
new file mode 100644
index 000000000..9ee7e291e
--- /dev/null
+++ b/community/caps/PKGBUILD
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer : speps <speps at aur dot archlinux dot org>
+# Contributor: DonVla <donvla@users.sourceforge.net>
+
+pkgname=caps
+pkgver=0.9.8
+pkgrel=1
+pkgdesc="The LADSPA C* Audio Plugin Suite"
+arch=('i686' 'x86_64')
+url="http://quitte.de/dsp/caps.html"
+license=('GPL3')
+groups=('ladspa-plugins')
+depends=('ladspa')
+source=("http://quitte.de/dsp/caps_$pkgver.tar.bz2")
+md5sums=('e3bfcb4c53670dcc3c8ba3ce3639d002')
+
+prepare() {
+ cd "$srcdir/$pkgname-$pkgver"
+ # use a minimum of optimization required to build
+ export _CFLAGS='-msse -mfpmath=sse'
+}
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+ make
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+ make PREFIX="$pkgdir/usr" install
+}