aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/rt-audio.rb14
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