mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-27 23:44:04 +00:00
added community/supercollider
This commit is contained in:
parent
6303b20e57
commit
b131d43ea3
2 changed files with 47 additions and 0 deletions
35
community/supercollider/PKGBUILD
Normal file
35
community/supercollider/PKGBUILD
Normal 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
|
||||
}
|
12
community/supercollider/supercollider.install
Normal file
12
community/supercollider/supercollider.install
Normal 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
|
||||
}
|
Loading…
Reference in a new issue