blob: 0d565f3dad838dd69bdaf010e7e085fd370c9f3b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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"
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
|