diff options
| author | youpy | 2011-01-29 04:43:36 +0900 | 
|---|---|---|
| committer | Mike McQuaid | 2011-02-12 15:09:02 +0000 | 
| commit | 4f6904b130073d75c472358fa7d695150054d2d7 (patch) | |
| tree | e81fa902baa556fb39e2e848a766e7e1af6a3ab1 /Library | |
| parent | 6c7890f66d969b1cf0b50305803f468741717552 (diff) | |
| download | homebrew-4f6904b130073d75c472358fa7d695150054d2d7.tar.bz2 | |
add Formula for Ecasound
Closes #4060.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/ecasound.rb | 13 | 
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/ecasound.rb b/Library/Formula/ecasound.rb new file mode 100644 index 000000000..1a3f357ac --- /dev/null +++ b/Library/Formula/ecasound.rb @@ -0,0 +1,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  | 
