aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/streamripper.rb
blob: 4f01333feaeb22538ba79da30bf1eae4c07b48cc (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.", :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