homebrew-core/Formula/dromeaudio.rb

15 lines
352 B
Ruby
Raw Normal View History

require 'formula'
class Dromeaudio < Formula
homepage 'http://joshbeam.com/software/dromeaudio/'
2013-09-28 04:02:20 +00:00
url 'http://joshbeam.com/files/software/dromeaudio/DromeAudio-0.2.1.tar.gz'
sha1 '4d225a2b00300d04320aafb217d9087b12651be1'
depends_on 'cmake' => :build
def install
system "cmake", ".", *std_cmake_args
system "make install"
end
end