You are not logged in.
Pages: 1
Topic closed
has anyone considered making packages for supercollider yet?
if theres any interest i might work on one, but thought id ask first and see.
Offline
well im still working on a PKGBUILD for it, couple of issues to iron out and then it should be ok ![]()
btw supercollider is less of a modular synth and more an audio programming language.
Offline
i managed build SC3 with the following PKGBUILD a couple weeks ago. this is only the second or third PKGBUILD i've written, so it may not meet official style guidelines. the patch is to fix a hard-coded path in supercollider's SConstruct. also, this build doesn't support emacs (i'm new to supercollider and i didn't realize that text editors were the usual mode of interaction). maybe emacs support should be on by default in the community version?
pkgname=SuperCollider3-svn
pkgver=5817
pkgrel=1
pkgdesc="SuperCollider is an object oriented programming environment\
for real-time audio and video processing."
depends=('jack-audio-connection-kit' 'libsndfile' 'alsa-lib')
makedepends=('subversion' 'scons' 'pkgconfig')
conflict=('SuperCollider3')
provides=('SuperCollider3')
source=()
md5sums=()
_svntrunk=https://svn.sourceforge.net/svnroot/supercollider/trunk
_svnmod=SuperCollider3
build() {
cd $startdir/src
svn co $_svntrunk --config-dir ./ -r $pkgver $_svnmod
msg "SVN checkout done or server timeout"
msg "Starting scons..."
cp -r $_svnmod $_svnmod-build
cd $_svnmod-build
patch SConstruct $startdir/SConstruct.patch
scons PREFIX=/usr SCEL=no X11=yes LID=yes || return 1
scons PREFIX=$startdir/pkg install
rm -rf $startdir/src/$_svnmod-build
}SConstruct.patch:
442c442
< env['X11'] = '/usr/X11R6'
---
> env['X11'] = '/usr'
444,445c444,445
< CPPPATH = [os.path.join(env['X11'], 'include')],
< LIBPATH = [os.path.join(env['X11'], 'lib')])
---
> CPPPATH = [os.path.join(env['X11'], 'include/xorg')],
> LIBPATH = [os.path.join(env['X11'], 'lib/xorg')])Offline
nice one, but you dont need to worry about patching scons as there is a flag you can pass to specify X11 path.
emacs support should be on by default, as it is the standard way of interacting with sclang.
Offline
Has anyone built supercollider for arch_64? I am a hardcore user and would be very interested.
Offline
Does the supercollider AUR package not work on x64?
Offline
jsadural: the thread is three years old, please don't necrobump http://wiki.archlinux.org/index.php/For … Bumping.27
Closing
Offline
Pages: 1
Topic closed