blob: b95c3b8e4d7d40f47be60c319cae4cb2a1ffee7e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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
|