ffd3ef0fbb
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
14 lines
362 B
Ruby
14 lines
362 B
Ruby
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
|