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/'
|
2013-09-23 22:23:33 +00:00
|
|
|
url 'http://www.music.mcgill.ca/~gary/rtaudio/release/rtaudio-4.0.12.tar.gz'
|
|
|
|
sha1 'a9a4783183e47f07cff0c62d3882ee95b4eefc4d'
|
2010-01-19 20:48:58 +00:00
|
|
|
|
|
|
|
def install
|
2013-09-23 22:23:33 +00:00
|
|
|
ENV.j1 # makefile isn't parallel-safe
|
2010-01-19 20:48:58 +00:00
|
|
|
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
|