blob: 3717f538c5c2228ef6c834587052a23fd9cd3ab3 (
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.8.1.tar.gz'
homepage 'http://www.eca.cx/ecasound/'
md5 'd9ded0074a8eeb59dd507c248220d010'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end
|