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
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Chuck < Formula
|
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
|
|
|
homepage 'http://chuck.cs.princeton.edu/'
|
2014-02-08 16:12:55 +00:00
|
|
|
url 'http://chuck.cs.princeton.edu/release/files/chuck-1.3.3.0.tgz'
|
|
|
|
sha1 'fdf70c860c9fabf45a8caf07830bc70548ce3bba'
|
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
|
2012-09-25 03:31:30 +00:00
|
|
|
cd "src" do
|
2014-02-08 20:01:54 +00:00
|
|
|
# On 10.9, chuck fails to set flags to link against the
|
|
|
|
# private framework it needs
|
|
|
|
# See: https://github.com/Homebrew/homebrew/issues/26519
|
|
|
|
inreplace 'makefile.osx' do |s|
|
2014-02-11 23:33:59 +00:00
|
|
|
# Continuation of another line, which the change_make_var! will mangle
|
|
|
|
s.gsub! ' -weak_framework MultitouchSupport', ''
|
2014-02-08 20:01:54 +00:00
|
|
|
s.change_make_var! 'LINK_EXTRAS',
|
|
|
|
'-F/System/Library/PrivateFrameworks -weak_framework MultitouchSupport'
|
|
|
|
s.remove_make_var! 'ISYSROOT'
|
|
|
|
end
|
|
|
|
|
2012-09-25 03:31:30 +00:00
|
|
|
system "make osx"
|
|
|
|
bin.install "chuck"
|
|
|
|
end
|
|
|
|
(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
|
|
|
|
end
|