2009-12-25 21:31:55 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Streamripper < Formula
|
2009-12-25 21:31:55 +00:00
|
|
|
url 'http://downloads.sourceforge.net/sourceforge/streamripper/streamripper-1.64.6.tar.gz'
|
|
|
|
homepage 'http://streamripper.sourceforge.net/'
|
|
|
|
md5 'a37a1a8b8f9228522196a122a1c2dd32'
|
|
|
|
|
|
|
|
depends_on 'glib'
|
|
|
|
|
2011-10-05 23:01:38 +00:00
|
|
|
fails_with_llvm "Strange runtime errors with LLVM.", :build => 2335
|
2011-03-21 21:24:22 +00:00
|
|
|
|
2009-12-25 21:31:55 +00:00
|
|
|
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
|