2011-03-10 05:11:03 +00:00
|
|
|
class Chuck < Formula
|
2014-05-23 18:27:49 +00:00
|
|
|
homepage "http://chuck.cs.princeton.edu/"
|
2015-02-13 21:41:38 +00:00
|
|
|
url "http://chuck.cs.princeton.edu/release/files/chuck-1.3.5.0.tgz"
|
|
|
|
sha1 "a97ad56f9fd1b0793ead099cc9723e888b3782c3"
|
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>
2010-07-20 19:26:22 +00:00
|
|
|
|
2014-11-14 19:31:10 +00:00
|
|
|
bottle do
|
|
|
|
cellar :any
|
2015-02-13 21:58:45 +00:00
|
|
|
sha1 "08c33bd5071ccbb466fa8347cc034702d1e6fd0b" => :yosemite
|
|
|
|
sha1 "513d888da91c755f743693a607075ee4d87b7661" => :mavericks
|
|
|
|
sha1 "f9831daea9100f13865049b40057fcec6b6e6203" => :mountain_lion
|
2014-11-14 19:31:10 +00:00
|
|
|
end
|
|
|
|
|
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>
2010-07-20 19:26:22 +00:00
|
|
|
def install
|
2014-05-23 18:27:49 +00:00
|
|
|
system "make", "-C", "src", "osx"
|
|
|
|
bin.install "src/chuck"
|
|
|
|
(share/"chuck").install "examples"
|
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>
2010-07-20 19:26:22 +00:00
|
|
|
end
|
2015-02-13 21:45:22 +00:00
|
|
|
|
|
|
|
test do
|
|
|
|
assert_match /probe \[success\]/m, shell_output("#{bin}/chuck --probe 2>&1")
|
|
|
|
end
|
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>
2010-07-20 19:26:22 +00:00
|
|
|
end
|