1e4cebfa24
Closes Homebrew/homebrew#4060. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
13 lines
365 B
Ruby
13 lines
365 B
Ruby
require 'formula'
|
|
|
|
class Ecasound <Formula
|
|
url 'http://ecasound.seul.org/download/ecasound-2.7.2.tar.gz'
|
|
homepage 'http://www.eca.cx/ecasound/'
|
|
md5 '40498ceed9cc7622ee969c427f13921c'
|
|
|
|
def install
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|