summaryrefslogtreecommitdiff
path: root/community/pd/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/pd/PKGBUILD')
-rw-r--r--community/pd/PKGBUILD16
1 files changed, 8 insertions, 8 deletions
diff --git a/community/pd/PKGBUILD b/community/pd/PKGBUILD
index 142d55d81..f73b84a4b 100644
--- a/community/pd/PKGBUILD
+++ b/community/pd/PKGBUILD
@@ -1,11 +1,10 @@
-# $Id: PKGBUILD 74762 2012-08-03 14:09:42Z speps $
+# $Id: PKGBUILD 92207 2013-06-02 18:54:01Z bpiotrowski $
# Maintainer : speps <speps at aur dot archlinux dot org>
-# Contributor: TDY <tdy@gmx.com>
+# Contributor: TDY <tdy@gmx.com>
# Contributor: Shinlun Hsieh <yngwiexx@yahoo.com.tw>
-# Contributor: Andrea Scarpino <bash.lnx@gmail.com>
pkgname=pd
-pkgver=0.43.4
+pkgver=0.44.3
_ver=${pkgver%.*}-${pkgver##*.}
pkgrel=1
pkgdesc="The Pure Data real-time music and multimedia environment"
@@ -15,10 +14,11 @@ license=('custom:BSD')
depends=('jack' 'fftw' 'tk')
provides=('puredata')
source=("http://crca.ucsd.edu/~msp/Software/pd-$_ver.src.tar.gz")
-md5sums=('9f174836ad5715ff3f65fd9b9f9a18ce')
+md5sums=('a3e8ca0eab039dc472a6533ef9344582')
build() {
- cd "$srcdir/pd-$_ver/src"
+ cd "$srcdir/pd-$_ver"
+ ./autogen.sh
./configure --prefix=/usr \
--enable-alsa \
--enable-jack \
@@ -27,10 +27,10 @@ build() {
}
package() {
- cd "$srcdir/pd-$_ver/src"
+ cd "$srcdir/pd-$_ver"
make DESTDIR="$pkgdir" install
# license
- install -Dm644 ../LICENSE.txt \
+ install -Dm644 LICENSE.txt \
"$pkgdir/usr/share/licenses/pd/LICENSE"
}