homebrew-core/Formula/flac.rb

32 lines
974 B
Ruby
Raw Normal View History

require 'formula'
2009-06-05 11:57:50 +00:00
2011-03-13 01:49:19 +00:00
class Flac2Mp3 < GithubGistFormula
url 'https://gist.github.com/raw/124242/79857936f1d72824be0fb5d2ac845c02322abea0/flac2mp3'
md5 '8351009b64afedfeb7a9e162ccd8d94c'
2009-06-05 11:57:50 +00:00
end
2011-03-10 05:11:03 +00:00
class Flac < Formula
homepage 'http://flac.sourceforge.net'
url 'http://downloads.sourceforge.net/sourceforge/flac/flac-1.2.1.tar.gz'
md5 '153c8b15a54da428d1f0fadc756c22c7'
depends_on 'lame'
2010-08-24 16:11:11 +00:00
depends_on 'libogg' => :optional
2009-06-05 11:57:50 +00:00
2011-03-21 21:24:22 +00:00
fails_with_llvm "Undefined symbols when linking", :build => 2326
2011-03-21 21:24:22 +00:00
def install
# sadly the asm optimisations won't compile since Leopard, and nobody
2009-06-05 11:57:50 +00:00
# cares or knows how to fix it
system "./configure", "--disable-debug",
"--disable-asm-optimizations",
"--enable-sse",
"--prefix=#{prefix}",
"--mandir=#{man}"
2009-07-31 13:04:49 +00:00
ENV['OBJ_FORMAT']='macho'
system "make install"
2009-06-05 11:57:50 +00:00
2009-08-10 17:27:53 +00:00
Flac2Mp3.new.brew {|f| bin.install 'flac2mp3'}
2009-06-05 11:57:50 +00:00
end
end