diff options
| author | Tom Lieber | 2010-01-19 12:48:58 -0800 |
|---|---|---|
| committer | Adam Vandenberg | 2010-05-24 10:43:26 -0700 |
| commit | cc853df4c81b195af519f985f96d97995eb0481d (patch) | |
| tree | 6b9a615987fc8214585354be680df49f8e36aa3c /Library/Formula | |
| parent | 0ac0c25c4b158f01961ba0a3c4e592df40495a37 (diff) | |
| download | homebrew-cc853df4c81b195af519f985f96d97995eb0481d.tar.bz2 | |
RtAudio 4.0.6
A set of C++ classes that provide a common API for realtime audio input/output across Linux, Macintosh OS-X and Windows
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
* Renamed
* Bumped to 4.0.7
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/rt-audio.rb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/rt-audio.rb b/Library/Formula/rt-audio.rb new file mode 100644 index 000000000..d12e91508 --- /dev/null +++ b/Library/Formula/rt-audio.rb @@ -0,0 +1,14 @@ +require 'formula' + +class RtAudio <Formula + url 'http://www.music.mcgill.ca/~gary/rtaudio/release/rtaudio-4.0.7.tar.gz' + homepage 'http://www.music.mcgill.ca/~gary/rtaudio/' + md5 '5d1292abccffa37505d9c4cc177b1e4f' + + def install + system "./configure" + system "make" + lib.install "librtaudio.a" + include.install ["RtAudio.h", "RtError.h"] + end +end |
