mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
24 lines
753 B
Bash
24 lines
753 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Jeff Mickey <jeff@archlinux.org>
|
|
# Maintainer: tardo <tardo@nagi-fanboi.net>
|
|
|
|
pkgname=chuck
|
|
pkgver=1.2.1.1
|
|
pkgrel=1
|
|
pkgdesc="Concurrent, on-the-fly audio programming language."
|
|
arch=('i686' 'x86_64')
|
|
url="http://chuck.cs.princeton.edu/"
|
|
license=('GPL')
|
|
depends=('gcc' 'libsndfile')
|
|
makedepends=('bison' 'flex' 'gcc' 'make')
|
|
source=(http://chuck.cs.princeton.edu/release/files/$pkgname-$pkgver.tgz)
|
|
|
|
build() {
|
|
cd $startdir/src/$pkgname-$pkgver/src
|
|
# This can be linux-alsa linux-jack linux-oss osx win32
|
|
make linux-alsa || return 1
|
|
install -D -m 755 chuck $startdir/pkg/usr/bin/chuck
|
|
}
|
|
|
|
md5sums=('7048a053b8afbaddbc467ad4fc1e7b58')
|
|
sha1sums=('5a1219d8f4b55f6a311fe0c040c28c9230e016dc')
|