homebrew-core/Formula/streamripper.rb

29 lines
813 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Streamripper < Formula
homepage 'http://streamripper.sourceforge.net/'
url 'http://downloads.sourceforge.net/sourceforge/streamripper/streamripper-1.64.6.tar.gz'
sha1 'bc8a8d3ad045e0772ca691d2063c39efcc0dca45'
2013-02-10 06:28:18 +00:00
depends_on 'pkg-config' => :build
depends_on 'glib'
fails_with :llvm do
build 2335
cause "Strange runtime errors with LLVM."
end
2011-03-21 21:24:22 +00:00
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