summaryrefslogtreecommitdiff
path: root/community/chuck/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/chuck/PKGBUILD')
-rw-r--r--community/chuck/PKGBUILD11
1 files changed, 6 insertions, 5 deletions
diff --git a/community/chuck/PKGBUILD b/community/chuck/PKGBUILD
index efde167ce..3bd620b5e 100644
--- a/community/chuck/PKGBUILD
+++ b/community/chuck/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 98759 2013-10-17 17:27:23Z arodseth $
+# $Id: PKGBUILD 101520 2013-11-26 22:50:13Z arodseth $
# Maintainer: Alexander Rødseth <rodseth@gmail.com>
# Contributor: Laurent Carlier <lordheavym@gmail.com>
# Contributor: Brad Fanella <bradfanella@archlinux.us>
@@ -8,24 +8,25 @@
pkgname=chuck
pkgver=1.3.2.0
-pkgrel=1
+pkgrel=2
pkgdesc='Concurrent, on-the-fly audio programming language'
arch=('x86_64' 'i686')
url='http://chuck.cs.princeton.edu/'
license=('GPL')
-depends=('gcc-libs' 'libsndfile')
+ depends=('gcc-libs' 'libsndfile' 'jack')
source=("http://chuck.cs.princeton.edu/release/files/$pkgname-$pkgver.tgz")
sha256sums=('ee0c7d94cd4053f9683f84007350992b7e7552fcc190eeba21a66de8deaf3948')
build() {
- make -C "$pkgname-$pkgver/src" linux-alsa # linux-jack linux-oss osx win32
+ # Other build alternatives are: linux-alsa linux-oss osx win32
+ make -C "$pkgname-$pkgver/src" linux-jack
}
package() {
cd "$pkgname-$pkgver/src"
install -Dm755 "$pkgname" "$pkgdir/usr/bin/$pkgname"
- mkdir -p "$pkgdir/usr/share/doc/$pkgname"
+ install -d "$pkgdir/usr/share/doc/$pkgname"
cp -r ../examples "$pkgdir/usr/share/doc/$pkgname"
}