├── .github └── workflows │ └── package-workflow.yml ├── LICENSE ├── README-deb.md ├── README.md ├── actions ├── Dockerfile ├── build-deb.sh ├── debian │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── docs │ ├── install │ ├── rules │ ├── source │ │ └── format │ └── watch └── sources.list ├── build-sc3-plugins.sh ├── build-supercollider.sh ├── debian └── Dockerfile └── ubuntu └── Dockerfile /.github/workflows/package-workflow.yml: -------------------------------------------------------------------------------- 1 | name: 'deb packages' 2 | on: 3 | push: 4 | branches: 5 | - master 6 | 7 | jobs: 8 | linux-packages: 9 | runs-on: ubuntu-latest 10 | 11 | steps: 12 | - name: 'Checkout' 13 | uses: actions/checkout@master 14 | 15 | - name: 'Build deb' 16 | uses: ./actions 17 | env: 18 | SC_VERSION: 3.10.3 19 | PERSONAL_TOKEN: ${{ secrets.PERSONAL_TOKEN }} 20 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | This is free and unencumbered software released into the public domain. 2 | 3 | Anyone is free to copy, modify, publish, use, compile, sell, or 4 | distribute this software, either in source code form or as a compiled 5 | binary, for any purpose, commercial or non-commercial, and by any 6 | means. 7 | 8 | In jurisdictions that recognize copyright laws, the author or authors 9 | of this software dedicate any and all copyright interest in the 10 | software to the public domain. We make this dedication for the benefit 11 | of the public at large and to the detriment of our heirs and 12 | successors. We intend this dedication to be an overt act of 13 | relinquishment in perpetuity of all present and future rights to this 14 | software under copyright law. 15 | 16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 17 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 18 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 19 | IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR 20 | OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 21 | ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 22 | OTHER DEALINGS IN THE SOFTWARE. 23 | 24 | For more information, please refer to 25 | -------------------------------------------------------------------------------- /README-deb.md: -------------------------------------------------------------------------------- 1 | # Debian way 2 | 3 | Dan Stowell posted an article about [how to package SC for debian/ubuntu](http://mcld.co.uk/blog/2017/how-to-package-supercollider-for-debian-and-ubuntu-linux.html), which seems to be the most sane way to build SC if you're using one of these distros. 4 | To make things simpler (and avoid breaking your OS), I've created Docker recipes to create a clean Debian and Ubuntu building environments with the necessary dependencies to properly build deb packages. 5 | 6 | ### Using Docker 7 | 8 | In order to build the Docker image, enter to your prefered distro and: 9 | ``` 10 | $ docker build -t scdeb . 11 | ``` 12 | 13 | To run it after: 14 | ``` 15 | $ docker run --rm -it scdeb 16 | ``` 17 | 18 | ### Dan's post 19 | 20 | Once you have a clean Debian installation working, just follow his advice. 21 | The only thing that changes are: 22 | 23 | `gbp import-orig --pristine-tar --sign-tags ${path-to-fetched-tarball}` 24 | He describes `../tarballs` as the directory where the repacked tar is placed, in my case this directory was simply `..` (the directory above). 25 | 26 | `gbp buildpackage -S --git-export-dir=../buildarea` 27 | Same thing here: He describes `../buildarea` as the directory where the repacked tar is placed, in my case this directory was simply `..` (the directory above). 28 | 29 | Also, since I'm not Felipe Sateler nor Dan Stowell, I wasn't able to sign the `.changes` or the `source`, so I used the flags `-uc -us` which doesn't sign the `.changes` / `source` respectively. 30 | ie: `gbp buildpackage -S -uc -us --git-export-dir=../` 31 | 32 | ### That's it. 33 | 34 | If everything went well, you'll see a bunch of `.deb` files placed in the directory above of the cloned repository. 35 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # build-supercollider 2 | 3 | A _dead simple_ script that installs (build) dependencies, clones [Supercollider](https://github.com/supercollider/supercollider/), builds it, and finally will install it. 4 | 5 | ## Current version: 6 | 7 | > 3.11 8 | 9 | 10 | ## How to? 11 | 12 | ```bash 13 | git clone https://github.com/lvm/build-supercollider 14 | cd build-supercollider 15 | ./build-supercollider.sh 16 | ./build-sc3-plugins.sh 17 | ``` 18 | 19 | That's all. 20 | Keep in mind this script works on Debian-derivates distributions (such as Ubuntu, Mint, etc). Sorry Windows, OS X, and other GNU/linux distros. 21 | 22 | See [README-deb.md](README-deb.md) for thoughts on making .deb packages. 23 | 24 | ### Known issues 25 | 26 | #### Qt5 Not found 27 | 28 | [@pselle](https://github.com/pselle) kindly reported a solution 29 | 30 | > Future reader, if you got to this because you figured out that you were unable to locate packages and the installing dependencies step failed, and you followed the SuperCollider instructions on getting Qt on your machine ... to use the handy script in this repo, update this line: 31 | > 32 | > ` -DCMAKE_PREFIX_PATH= \` 33 | > 34 | > to your Qt path (for example:) 35 | > ` -DCMAKE_PREFIX_PATH=/opt/qt511 \` 36 | > 37 | > This assumes you edited so that you installed all the other prereqs (deleting the qtwebengine5-dev bit from the install section) 38 | -------------------------------------------------------------------------------- /actions/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM ubuntu:latest 2 | 3 | LABEL "com.github.actions.name"="build-deb" 4 | LABEL "com.github.actions.description"="Builds Debian packages" 5 | LABEL "com.github.actions.icon"="package" 6 | LABEL "com.github.actions.color"="blue" 7 | 8 | ENV BASEDIR $(pwd) 9 | ENV OUTPUT_FILE /tmp/SuperCollider-$VERSION-Source-linux.tar.bz2 10 | ENV BUILD_DIR /tmp/SuperCollider-Source 11 | 12 | ADD debian/ /debian 13 | COPY build-deb.sh /usr/bin/build-deb.sh 14 | COPY sources.list /etc/apt/sources.list 15 | 16 | RUN apt-get update \ 17 | && apt-get install -yq --no-install-recommends \ 18 | build-essential devscripts debhelper wget emacs \ 19 | ca-certificates libwww-perl gnupg2 file git \ 20 | pristine-tar fakeroot pkg-config cmake subversion \ 21 | python-all-dev libboost-dev libboost-date-time-dev \ 22 | libboost-filesystem-dev libboost-math-dev \ 23 | libboost-program-options-dev libboost-regex-dev \ 24 | libboost-system-dev libboost-test-dev libboost-thread-dev \ 25 | libjack-jackd2-dev libudev-dev libsndfile1-dev libasound2-dev \ 26 | libavahi-client-dev libicu-dev libreadline6-dev libfftw3-dev \ 27 | libxt-dev libcwiid-dev libqt5webkit5-dev libqt5sensors5-dev \ 28 | qt5-default qt5-qmake qttools5-dev qttools5-dev-tools \ 29 | qtdeclarative5-dev qtpositioning5-dev libqt5opengl5-dev \ 30 | qtwebengine5-dev libqt5svg5-dev libqt5websockets5-dev 31 | 32 | ENTRYPOINT ["/usr/bin/build-deb.sh"] 33 | -------------------------------------------------------------------------------- /actions/build-deb.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -ex 4 | 5 | wget https://github.com/supercollider/supercollider/releases/download/Version-$SC_VERSION/SuperCollider-$SC_VERSION-Source-linux.tar.bz2 -O $OUTPUT_FILE \ 6 | && rm -fr $BUILD_DIR \ 7 | && cd /tmp \ 8 | && tar xjf $OUTPUT_FILE \ 9 | && cd $BUILD_DIR \ 10 | && cp /debian . -a \ 11 | && uscan --force-download \ 12 | && dpkg-buildpackage \ 13 | && cd /tmp \ 14 | && cp supercollider-community* $GITHUB_WORKSPACE \ 15 | && cd $GITHUB_WORKSPACE \ 16 | && git checkout -b gh-pages || git checkout gh-pages \ 17 | && git remote add https https://${GITHUB_ACTOR}:${PERSONAL_TOKEN}@github.com/${GITHUB_REPOSITORY}.git \ 18 | && git add supercollider-community* \ 19 | && git config user.name "${GITHUB_ACTOR}" \ 20 | && git config user.email "${GITHUB_ACTOR}@users.noreply.github.com" \ 21 | && git commit -m "SC Version: ${SC_VERSION} (${GITHUB_SHA})" \ 22 | && git push --force https gh-pages 23 | -------------------------------------------------------------------------------- /actions/debian/changelog: -------------------------------------------------------------------------------- 1 | supercollider-community (3.10.3-1) unstable; urgency=medium 2 | 3 | * Initial release. 4 | 5 | -- Mauro Thu, 12 Sep 2019 23:18:29 -0300 6 | -------------------------------------------------------------------------------- /actions/debian/compat: -------------------------------------------------------------------------------- 1 | 10 -------------------------------------------------------------------------------- /actions/debian/control: -------------------------------------------------------------------------------- 1 | Source: supercollider-community 2 | Section: sound 3 | Priority: optional 4 | Maintainer: Mauro 5 | Build-Depends: 6 | cmake (>= 2.8.12), 7 | debhelper (>= 10~), 8 | emacs | emacsen, 9 | libasound2-dev [linux-any], 10 | libavahi-client-dev, 11 | libcwiid-dev, 12 | libfftw3-dev, 13 | libicu-dev, 14 | libjack-dev, 15 | libqt5core5a (>= 5.3), 16 | libreadline-dev, 17 | libsndfile1-dev (>= 1.0.16), 18 | libudev-dev, 19 | libxt-dev, 20 | python-all-dev (>= 2.6.6-3~), 21 | qtbase5-dev, 22 | qt5-qmake, 23 | qttools5-dev, 24 | qttools5-dev-tools, 25 | qtdeclarative5-dev, 26 | libqt5opengl5-dev, 27 | libqt5webkit5-dev, 28 | qtwebengine5-dev, 29 | libqt5websockets5-dev, 30 | libqt5svg5-dev, 31 | qtpositioning5-dev, 32 | libqt5sensors5-dev, 33 | libboost-dev (>= 1.57), 34 | libboost-date-time-dev (>= 1.57), 35 | libboost-filesystem-dev (>= 1.57), 36 | libboost-math-dev (>= 1.57), 37 | libboost-program-options-dev (>= 1.57), 38 | libboost-regex-dev (>= 1.57), 39 | libboost-system-dev (>= 1.57), 40 | libboost-test-dev (>= 1.57), 41 | libboost-thread-dev (>= 1.57) 42 | Standards-Version: 4.1.0 43 | Homepage: http://supercollider.github.io 44 | 45 | Package: supercollider-community 46 | Architecture: amd64 47 | Depends: ${shlibs:Depends}, ${misc:Depends}, jackd, 48 | libsndfile1-dev (>= 1.0.16) 49 | Description: real time audio synthesis programming language 50 | SuperCollider is an environment and programming language for real time 51 | audio synthesis and algorithmic composition. It provides an interpreted 52 | object-oriented language which functions as a network client 53 | to a state of the art, realtime sound synthesis server. 54 | . 55 | This package is community maintained NOT maintained/related to 56 | Debian or Ubuntu. -------------------------------------------------------------------------------- /actions/debian/copyright: -------------------------------------------------------------------------------- 1 | Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ 2 | Upstream-Name: SuperCollider 3 | Upstream-Contact: SuperCollider Development Team 4 | Source: http://supercollider.github.io/ 5 | 6 | Files: debian/* 7 | Copyright: 2019 Mauro 8 | License: GPL-3.0+ 9 | 10 | License: GPL-3.0+ 11 | This program is free software: you can redistribute it and/or modify 12 | it under the terms of the GNU General Public License as published by 13 | the Free Software Foundation, either version 3 of the License, or 14 | (at your option) any later version. 15 | . 16 | This package is distributed in the hope that it will be useful, 17 | but WITHOUT ANY WARRANTY; without even the implied warranty of 18 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19 | GNU General Public License for more details. 20 | . 21 | You should have received a copy of the GNU General Public License 22 | along with this program. If not, see . 23 | . 24 | On Debian systems, the complete text of the GNU General 25 | Public License version 3 can be found in "/usr/share/common-licenses/GPL-3". 26 | -------------------------------------------------------------------------------- /actions/debian/docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvm/build-supercollider/cfd9e5ea9e817a010ff5af9690ed0d3381792e43/actions/debian/docs -------------------------------------------------------------------------------- /actions/debian/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvm/build-supercollider/cfd9e5ea9e817a010ff5af9690ed0d3381792e43/actions/debian/install -------------------------------------------------------------------------------- /actions/debian/rules: -------------------------------------------------------------------------------- 1 | #! /usr/bin/make -f 2 | 3 | include /usr/share/dpkg/architecture.mk 4 | 5 | DPKG_EXPORT_BUILDFLAGS = 1 6 | DEB_BUILD_MAINT_OPTIONS=hardening=+all 7 | include /usr/share/dpkg/default.mk 8 | 9 | %: 10 | dh $@ 11 | 12 | export DH_OPTIONS 13 | 14 | export VERSION=`dpkg-parsechangelog -SVersion` 15 | export DATE=`date` 16 | export REVISION_H="Source/Core/CtrlrRevision.h" 17 | export TEMPLATE_H="Source/Core/CtrlrRevision.template" 18 | 19 | DEB_CMAKE_EXTRA_FLAGS = \ 20 | -DCMAKE_PREFIX_PATH=/usr/lib/x86_64-linux-gnu/ \ 21 | -DBUILD_TESTING=OFF \ 22 | -DSC_ED=OFF \ 23 | -DSC_EL=OFF \ 24 | -DSC_VIM=OFF \ 25 | -DSC_IDE=ON 26 | 27 | %: 28 | dh $@ --parallel 29 | 30 | override_dh_auto_configure: 31 | dh_auto_configure -- $(DEB_CMAKE_EXTRA_FLAGS) 32 | 33 | override_dh_auto_test: 34 | @echo "Tests disabled" 35 | -------------------------------------------------------------------------------- /actions/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /actions/debian/watch: -------------------------------------------------------------------------------- 1 | version=3 2 | 3 | https://github.com/supercollider/supercollider/releases/latest .*/SuperCollider-(\d\S*)-Source-linux\.tar\.bz2 4 | -------------------------------------------------------------------------------- /actions/sources.list: -------------------------------------------------------------------------------- 1 | deb http://us.archive.ubuntu.com/ubuntu/ bionic main restricted 2 | deb-src http://us.archive.ubuntu.com/ubuntu/ bionic main restricted 3 | 4 | deb http://us.archive.ubuntu.com/ubuntu/ bionic main restricted 5 | deb-src http://us.archive.ubuntu.com/ubuntu/ bionic main restricted 6 | 7 | deb http://us.archive.ubuntu.com/ubuntu/ bionic-updates main restricted 8 | deb-src http://us.archive.ubuntu.com/ubuntu/ bionic-updates main restricted 9 | 10 | deb http://us.archive.ubuntu.com/ubuntu/ bionic universe 11 | deb-src http://us.archive.ubuntu.com/ubuntu/ bionic universe 12 | deb http://us.archive.ubuntu.com/ubuntu/ bionic-updates universe 13 | deb-src http://us.archive.ubuntu.com/ubuntu/ bionic-updates universe 14 | 15 | deb http://us.archive.ubuntu.com/ubuntu/ bionic multiverse 16 | deb-src http://us.archive.ubuntu.com/ubuntu/ bionic multiverse 17 | 18 | deb http://us.archive.ubuntu.com/ubuntu/ bionic-updates multiverse 19 | deb-src http://us.archive.ubuntu.com/ubuntu/ bionic-updates multiverse 20 | 21 | deb http://security.ubuntu.com/ubuntu bionic-security main restricted 22 | deb-src http://security.ubuntu.com/ubuntu bionic-security main restricted 23 | 24 | deb http://security.ubuntu.com/ubuntu bionic-security universe 25 | deb-src http://security.ubuntu.com/ubuntu bionic-security universe 26 | 27 | deb http://security.ubuntu.com/ubuntu bionic-security multiverse 28 | deb-src http://security.ubuntu.com/ubuntu bionic-security multiverse -------------------------------------------------------------------------------- /build-sc3-plugins.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | ### 4 | # 5 | # Variables 6 | # 7 | INSTALL_DIR=/tmp 8 | SUPERCOLLIDER_VER='Version-3.11.0' 9 | SC3PLUGINS_DIR=$INSTALL_DIR/sc3-plugins 10 | SC3PLUGINS_BUILD_DIR=$SC3PLUGINS_DIR/build 11 | SC3_DIRECTORY=/usr/local/share/SuperCollider 12 | SC3_EXT_DIRECTORY=/usr/local/share/SuperCollider/Extensions 13 | 14 | ### 15 | # 16 | # Update 17 | # 18 | sudo apt update 19 | 20 | ### 21 | # 22 | # Install building dependencies 23 | # 24 | sudo apt install -yq \ 25 | build-essential pkg-config cmake subversion git \ 26 | libjack-jackd2-dev libudev-dev libsndfile1-dev libasound2-dev \ 27 | libavahi-client-dev libicu-dev libreadline6-dev libfftw3-dev \ 28 | libxt-dev libcwiid-dev libqt5webkit5-dev libqt5sensors5-dev \ 29 | qt5-qmake qttools5-dev qttools5-dev-tools \ 30 | qtdeclarative5-dev qtpositioning5-dev 31 | sudo apt install -yq qt5-default 32 | 33 | ### 34 | # 35 | # Download and build SC 36 | # 37 | mkdir -p $SC3PLUGINS_DIR 38 | 39 | # Download SC3 Plugins Source 40 | git clone --recursive --branch $SUPERCOLLIDER_VER \ 41 | https://github.com/supercollider/sc3-plugins.git $SC3PLUGINS_DIR 42 | 43 | # Create the the directory where SC3 Plugins will be built 44 | mkdir -p $SC3PLUGINS_BUILD_DIR 45 | 46 | sudo mkdir -p $SC3_EXT_DIRECTORY 47 | 48 | # And build it. 49 | cd $SC3PLUGINS_BUILD_DIR && \ 50 | cmake -DCMAKE_PREFIX_PATH=/usr/lib/x86_64-linux-gnu/ \ 51 | -DCMAKE_INSTALL_PREFIX=/usr/local \ 52 | -DSC_PATH=/tmp/supercollider/ \ 53 | -DBUILD_TESTING=OFF -DQUARKS=ON -DSUPERNOVA=ON .. && \ 54 | make -j4 && \ 55 | sudo make install && \ 56 | sudo ldconfig && \ 57 | sudo mv $SC3_DIRECTORY/SC3plugins $SC3_EXT_DIRECTORY/SC3plugins 58 | -------------------------------------------------------------------------------- /build-supercollider.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | ### 4 | # 5 | # Variables 6 | # 7 | INSTALL_DIR=/tmp 8 | SUPERCOLLIDER_VER=3.11 9 | SUPERCOLLIDER_DIR=$INSTALL_DIR/supercollider 10 | SUPERCOLLIDER_BUILD_DIR=$SUPERCOLLIDER_DIR/build 11 | 12 | ### 13 | # 14 | # Update 15 | # 16 | sudo apt update 17 | 18 | ### 19 | # 20 | # Install building dependencies 21 | # 22 | sudo apt install -yq \ 23 | build-essential pkg-config cmake subversion git \ 24 | libjack-jackd2-dev libudev-dev libsndfile1-dev libasound2-dev \ 25 | libavahi-client-dev libicu-dev libreadline6-dev libfftw3-dev \ 26 | libxt-dev libcwiid-dev libqt5webkit5-dev libqt5sensors5-dev \ 27 | qt5-qmake qttools5-dev qttools5-dev-tools \ 28 | qtdeclarative5-dev qtpositioning5-dev libqt5opengl5-dev \ 29 | qtwebengine5-dev libqt5svg5-dev libqt5websockets5-dev emacs 30 | sudo apt install -yq qt5-default 31 | 32 | ### 33 | # 34 | # Download and build SC 35 | # 36 | mkdir -p $SUPERCOLLIDER_DIR 37 | 38 | # Download SC Source 39 | git clone --recursive --branch $SUPERCOLLIDER_VER \ 40 | https://github.com/supercollider/supercollider.git $SUPERCOLLIDER_DIR 41 | 42 | # Create the the directory where SC will be built 43 | mkdir -p $SUPERCOLLIDER_BUILD_DIR 44 | 45 | # And build it. 46 | cd $SUPERCOLLIDER_BUILD_DIR && \ 47 | cmake -DCMAKE_INSTALL_PREFIX=/usr/local \ 48 | -DCMAKE_PREFIX_PATH=/usr/lib/x86_64-linux-gnu/ \ 49 | -DBUILD_TESTING=OFF -DSC_ED=OFF -DSC_EL=OFF \ 50 | -DSC_VIM=ON -DSC_IDE=ON .. && \ 51 | make -j4 && \ 52 | sudo make install && \ 53 | sudo ldconfig 54 | -------------------------------------------------------------------------------- /debian/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM debian:stable 2 | MAINTAINER Mauro 3 | 4 | ### 5 | # Building env 6 | # 7 | 8 | ENV LANG C.UTF-8 9 | ENV USER root 10 | ENV DEBIAN_FRONTEND noninteractive 11 | ENV DEBIAN_PRIORITY critical 12 | ENV DEBCONF_NOWARNINGS yes 13 | ENV QUILT_PATCHES=debian/patches 14 | 15 | ### 16 | # Distro setup: Sources repositories & SC build dependencies 17 | # 18 | 19 | RUN echo "deb-src http://deb.debian.org/debian stable main" >> /etc/apt/sources.list \ 20 | && apt-get update \ 21 | && apt-get -y upgrade \ 22 | && apt-get install -yq \ 23 | devscripts git-buildpackage \ 24 | ca-certificates quilt \ 25 | libwww-perl gnupg2 \ 26 | file pristine-tar fakeroot \ 27 | --no-install-recommends \ 28 | && apt-get build-dep -yq supercollider 29 | 30 | WORKDIR /root 31 | -------------------------------------------------------------------------------- /ubuntu/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM ubuntu:17.10 2 | MAINTAINER Mauro 3 | 4 | ### 5 | # Building env 6 | # 7 | 8 | ENV LANG C.UTF-8 9 | ENV USER root 10 | ENV DEBIAN_FRONTEND noninteractive 11 | ENV DEBIAN_PRIORITY critical 12 | ENV DEBCONF_NOWARNINGS yes 13 | ENV QUILT_PATCHES=debian/patches 14 | 15 | ### 16 | # Distro setup: Sources repositories & SC build dependencies 17 | # 18 | 19 | RUN echo "deb-src http://archive.ubuntu.com/ubuntu/ artful main restricted" >> /etc/apt/sources.list \ 20 | && apt-get update \ 21 | && apt-get -y upgrade \ 22 | && apt-get install -yq \ 23 | devscripts git-buildpackage \ 24 | ca-certificates quilt \ 25 | libwww-perl gnupg2 \ 26 | file pristine-tar fakeroot \ 27 | --no-install-recommends \ 28 | && apt-get build-dep -yq supercollider 29 | 30 | WORKDIR /root 31 | --------------------------------------------------------------------------------