summaryrefslogtreecommitdiff
path: root/community/pd
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-07-28 00:02:21 +0000
committerroot <root@rshg054.dnsready.net>2012-07-28 00:02:21 +0000
commita5c2e73ba30c769148056635676165a4265eac83 (patch)
treee9a7043a5fc46bc7021cfb8503fc9245bbee4057 /community/pd
parent2c30604c9ff749660a4b8507eec99e679cf19508 (diff)
Sat Jul 28 00:02:21 UTC 2012
Diffstat (limited to 'community/pd')
-rw-r--r--community/pd/PKGBUILD36
1 files changed, 36 insertions, 0 deletions
diff --git a/community/pd/PKGBUILD b/community/pd/PKGBUILD
new file mode 100644
index 000000000..18449382a
--- /dev/null
+++ b/community/pd/PKGBUILD
@@ -0,0 +1,36 @@
+# $Id: PKGBUILD 74397 2012-07-26 14:58:32Z speps $
+# Maintainer : speps <speps at aur dot archlinux dot org>
+# Contributor: TDY <tdy@gmx.com>
+# Contributor: Shinlun Hsieh <yngwiexx@yahoo.com.tw>
+# Contributor: Andrea Scarpino <bash.lnx@gmail.com>
+
+pkgname=pd
+pkgver=0.43.3
+_ver=${pkgver%.*}-${pkgver##*.}
+pkgrel=1
+pkgdesc="The Pure Data real-time music and multimedia environment"
+arch=('i686' 'x86_64')
+url="http://crca.ucsd.edu/~msp/software.html"
+license=('custom:BSD')
+depends=('jack' 'fftw' 'tk')
+provides=('puredata')
+source=("http://crca.ucsd.edu/~msp/Software/pd-$_ver.src.tar.gz")
+md5sums=('c0a565d3be92844780a86524598a5137')
+
+build() {
+ cd "$srcdir/pd-$_ver/src"
+ ./configure --prefix=/usr \
+ --enable-alsa \
+ --enable-jack \
+ --enable-fftw
+ make
+}
+
+package() {
+ cd "$srcdir/pd-$_ver/src"
+ make DESTDIR="$pkgdir" install
+
+ # license
+ install -Dm644 ../LICENSE.txt \
+ "$pkgdir/usr/share/licenses/pd/LICENSE"
+}