6f70e1f9dc
It builds, but still produces runtime errors. cf. Homebrew/homebrew#7942. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
17 lines
581 B
Ruby
17 lines
581 B
Ruby
require 'formula'
|
|
|
|
class Streamripper < Formula
|
|
url 'http://downloads.sourceforge.net/sourceforge/streamripper/streamripper-1.64.6.tar.gz'
|
|
homepage 'http://streamripper.sourceforge.net/'
|
|
md5 'a37a1a8b8f9228522196a122a1c2dd32'
|
|
|
|
depends_on 'glib'
|
|
|
|
fails_with_llvm "Strange runtime errors with LLVM.", :build => 2335
|
|
|
|
def install
|
|
File.chmod 0755, "./install-sh" # without this 'make install' doesn't seem to work (permission denied)
|
|
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
|
|
system "make install"
|
|
end
|
|
end
|