ChucK 1.2.1.3
A new (and developing) audio programming language for real-time synthesis, composition, performance, and now, analysis - fully supported on MacOS X, Windows, and Linux. ChucK presents a new time-based, concurrent programming model that's highly precise and expressive (we call this strongly-timed), as well as dynamic control rates, and the ability to add and modify code on-the-fly. In addition, ChucK supports MIDI, OSC, HID device, and multi-channel audio. It's fun and easy to learn, and offers composers, researchers, and performers a powerful programming tool for building and experimenting with complex audio synthesis/analysis programs, and real-time interactive control. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
f06ac3f77d
commit
1226aad737
1 changed files with 13 additions and 0 deletions
13
Formula/chuck.rb
Normal file
13
Formula/chuck.rb
Normal file
|
@ -0,0 +1,13 @@
|
|||
require 'formula'
|
||||
|
||||
class Chuck <Formula
|
||||
url 'http://chuck.cs.princeton.edu/release/files/chuck-1.2.1.3.tgz'
|
||||
homepage 'http://chuck.cs.princeton.edu/'
|
||||
md5 'ac8459b4067c2491fbdeb61d122a5985'
|
||||
|
||||
def install
|
||||
system "make -C src/ osx-#{Hardware.cpu_type}"
|
||||
bin.install "src/chuck"
|
||||
(share+'chuck').install "examples/"
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue