2010-01-19 20:48:58 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class RtAudio < Formula
|
2010-01-19 20:48:58 +00:00
|
|
|
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
|