community/supercollider to 3.6.6-1

This commit is contained in:
Kevin Mihelich 2013-11-29 21:55:30 +00:00
parent ad34379b62
commit 46db648f32

View file

@ -1,13 +1,13 @@
# $Id: PKGBUILD 90361 2013-05-12 02:59:43Z speps $
# $Id$
# Maintainer : speps <speps at aur dot archlinux dot org>
# Contributor: <farid at archlinux-br.org>
# Contributor: osc <farid at archlinux-br.org>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - added recommended cmake defines (last two lines)
_name=SuperCollider
pkgname=supercollider
pkgver=3.6.5
pkgver=3.6.6
pkgrel=1
pkgdesc="An environment and programming language for real time audio synthesis and algorithmic composition"
arch=('i686' 'x86_64')
@ -21,11 +21,11 @@ optdepends=('emacs: emacs interface'
'ruby: vim support')
install="$pkgname.install"
source=("http://download.sourceforge.net/project/$pkgname/Source/${pkgver%.*}/$_name-$pkgver-Source-linux.tar.bz2")
md5sums=('ac176ea512fc2b9a9be645322c5b20b4')
md5sums=('14d6063933230c74e42f5923a811e7c6')
build() {
cd "$srcdir/$_name-Source"
[ -d bld ] || mkdir bld && cd bld
[ -d b ] || mkdir b && cd b
cmake .. -DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=Release \
-DLIBSCSYNTH=ON \
@ -35,6 +35,6 @@ build() {
}
package() {
cd "$srcdir/$_name-Source/bld"
cd "$srcdir/$_name-Source/b"
make DESTDIR="$pkgdir/" install
}