88779ade49
Closes Homebrew/homebrew#14653.
21 lines
577 B
Ruby
21 lines
577 B
Ruby
require 'formula'
|
|
|
|
# 2.9.0 is out, but uses clock_gettime which is not available on OS X
|
|
class Ecasound < Formula
|
|
homepage 'http://www.eca.cx/ecasound/'
|
|
url 'http://ecasound.seul.org/download/ecasound-2.8.1.tar.gz'
|
|
sha1 '55c42a611ce59ea2b92461f49358a0cd54c40fe0'
|
|
|
|
option "with-ruby", "Compile with ruby support"
|
|
|
|
def install
|
|
args = %W[
|
|
--disable-debug
|
|
--disable-dependency-tracking
|
|
--prefix=#{prefix}
|
|
]
|
|
args << "--enable-rubyecasound=yes" if build.include? 'with-ruby'
|
|
system "./configure", *args
|
|
system "make install"
|
|
end
|
|
end
|