40 lines
1.4 KiB
Ruby
40 lines
1.4 KiB
Ruby
class Rtmidi < Formula
|
|
desc "C++ classes that provide a common API for realtime MIDI input/output"
|
|
homepage "https://www.music.mcgill.ca/~gary/rtmidi/"
|
|
url "https://github.com/thestk/rtmidi/archive/2.1.1.tar.gz"
|
|
sha256 "a015fbed67c777c7bc7bbcb96c07386ba3a8ff21006b411331e6f0b9f3f14d11"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "700e8a7768437ed27b87b9ee0642553a01d572556c21b8551bc62576d9e21f5e" => :sierra
|
|
sha256 "cd2de94d4142db7007d85e48ee11568101d7addd164a80340c6d198744059feb" => :el_capitan
|
|
sha256 "2c13437c6b86ed8332cea90bb0d666f15706daf728fabc0200878bd3f1870874" => :yosemite
|
|
sha256 "0718f6114ed75db09006bf375abf1c14e1142e716030de05d9843f63a70c3759" => :mavericks
|
|
end
|
|
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
depends_on "libtool" => :build
|
|
|
|
def install
|
|
system "./autogen.sh", "--no-configure"
|
|
system "./configure", "--prefix=#{prefix}"
|
|
system "make"
|
|
lib.install Dir[".libs/*.a", ".libs/*.dylib"]
|
|
include.install Dir["*.h"]
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.cpp").write <<-EOS.undent
|
|
#include "RtMidi.h"
|
|
int main(int argc, char **argv, char **env) {
|
|
RtMidiIn midiin;
|
|
RtMidiOut midiout;
|
|
std::cout << "Input ports: " << midiin.getPortCount() << "\\n"
|
|
<< "Output ports: " << midiout.getPortCount() << "\\n";
|
|
}
|
|
EOS
|
|
system ENV.cxx, "test.cpp", "-L#{lib}", "-lrtmidi", "-o", "test"
|
|
system "./test"
|
|
end
|
|
end
|