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
|
|
|
homepage 'http://www.music.mcgill.ca/~gary/rtaudio/'
|
2012-02-10 07:00:55 +00:00
|
|
|
url 'http://www.music.mcgill.ca/~gary/rtaudio/release/rtaudio-4.0.7.tar.gz'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 '56c647cc664dd021df1a6fa30fe96c04100c2b75'
|
2010-01-19 20:48:58 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure"
|
|
|
|
system "make"
|
|
|
|
lib.install "librtaudio.a"
|
2012-02-10 07:00:55 +00:00
|
|
|
include.install "RtAudio.h", "RtError.h"
|
2010-01-19 20:48:58 +00:00
|
|
|
end
|
|
|
|
end
|