New Formula: darkice
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
d312ed0926
commit
4f1efe9ace
1 changed files with 26 additions and 0 deletions
26
Formula/darkice.rb
Normal file
26
Formula/darkice.rb
Normal file
|
@ -0,0 +1,26 @@
|
|||
require 'formula'
|
||||
|
||||
class Darkice <Formula
|
||||
# coreaudio brach of darkice
|
||||
head 'http://darkice.googlecode.com/svn/darkice/branches/darkice-macosx'
|
||||
homepage 'http://darkice.org/'
|
||||
|
||||
depends_on 'libvorbis'
|
||||
depends_on 'lame'
|
||||
depends_on 'two-lame'
|
||||
depends_on 'faac'
|
||||
depends_on 'jack'
|
||||
|
||||
def install
|
||||
inreplace 'autogen.sh', 'libtool', 'glibtool'
|
||||
system "./autogen.sh", "--disable-dependency-tracking",
|
||||
"--prefix=#{prefix}",
|
||||
"--with-lame-prefix=#{HOMEBREW_PREFIX}",
|
||||
"--with-vorbis-prefix=#{HOMEBREW_PREFIX}",
|
||||
"--with-twolame-prefix=#{HOMEBREW_PREFIX}",
|
||||
"--with-faac-prefix=#{HOMEBREW_PREFIX}",
|
||||
"--with-jack-prefix=#{HOMEBREW_PREFIX}",
|
||||
"--with-core=yes"
|
||||
system "make install"
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue