added community/supercollider

This commit is contained in:
Kevin Mihelich 2013-11-05 02:39:32 +00:00
parent 6303b20e57
commit b131d43ea3
2 changed files with 47 additions and 0 deletions

View file

@ -0,0 +1,35 @@
# $Id: PKGBUILD 90361 2013-05-12 02:59:43Z speps $
# Maintainer : speps <speps at aur dot archlinux dot org>
# Contributor: <farid at archlinux-br.org>
_name=SuperCollider
pkgname=supercollider
pkgver=3.6.5
pkgrel=1
pkgdesc="An environment and programming language for real time audio synthesis and algorithmic composition"
arch=('i686' 'x86_64')
url="http://supercollider.sourceforge.net/"
license=('GPL3')
depends=('jack' 'fftw' 'cwiid' 'qtwebkit')
makedepends=('cmake' 'ruby' 'vim' 'emacs')
optdepends=('emacs: emacs interface'
'gedit: gedit interface'
'vim: vim interface'
'ruby: vim support')
install="$pkgname.install"
source=("http://download.sourceforge.net/project/$pkgname/Source/${pkgver%.*}/$_name-$pkgver-Source-linux.tar.bz2")
md5sums=('ac176ea512fc2b9a9be645322c5b20b4')
build() {
cd "$srcdir/$_name-Source"
[ -d bld ] || mkdir bld && cd bld
cmake .. -DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=Release \
-DLIBSCSYNTH=ON
make
}
package() {
cd "$srcdir/$_name-Source/bld"
make DESTDIR="$pkgdir/" install
}

View file

@ -0,0 +1,12 @@
post_install() {
update-desktop-database -q
update-mime-database usr/share/mime
}
post_upgrade() {
post_install
}
post_remove() {
post_install
}