aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/streamripper.rb
blob: 6ab35681c6c4ebee4a62bd979a16a0332702e0b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
require 'formula'

class Streamripper < Formula
  homepage 'http://streamripper.sourceforge.net/'
  url 'http://downloads.sourceforge.net/sourceforge/streamripper/streamripper-1.64.6.tar.gz'
  md5 'a37a1a8b8f9228522196a122a1c2dd32'

  depends_on 'glib'

  fails_with_llvm "Strange runtime errors with LLVM.", :build => 2335

  def install
    # the Makefile ignores CPPFLAGS from the environment, which
    # breaks the build when HOMEBREW_PREFIX is not /usr/local
    ENV.append_to_cflags ENV.cppflags

    chmod 0755, "./install-sh" # or "make install" fails

    system "./configure", "--prefix=#{prefix}",
                          "--disable-debug",
                          "--disable-dependency-tracking"
    system "make install"
  end
end