homebrew-core/Formula/nspr.rb

28 lines
1.0 KiB
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Nspr < Formula
url 'http://ftp.mozilla.org/pub/mozilla.org/nspr/releases/v4.8.6/src/nspr-4.8.6.tar.gz'
homepage 'http://www.mozilla.org/projects/nspr/'
md5 '592c275728c29d193fdba8009165990b'
def install
ENV.deparallelize
Dir.chdir "mozilla/nsprpub" do
2010-07-07 20:02:40 +00:00
# Fixes a bug with linking against CoreFoundation, needed to work with SpiderMonkey
2010-04-08 22:12:57 +00:00
# See: http://openradar.appspot.com/7209349
2010-11-09 05:35:23 +00:00
target_frameworks = (Hardware.is_32_bit? or MACOS_VERSION == 10.5) ? "-framework Carbon" : ""
2010-07-07 20:02:40 +00:00
inreplace "pr/src/Makefile.in", "-framework CoreServices -framework CoreFoundation", target_frameworks
2010-01-24 13:57:44 +00:00
args = ["--prefix=#{prefix}", "--disable-debug", "--enable-strip", "--enable-optimize"]
args << "--enable-64bit" if snow_leopard_64?
system "./configure", *args
2010-01-24 13:57:44 +00:00
2010-07-07 20:02:40 +00:00
# Remove the broken (for anyone but Firefox) install_name
inreplace "config/autoconf.mk", "-install_name @executable_path/$@ ", "-install_name #{lib}/$@ "
2010-01-24 13:57:44 +00:00
system "make"
system "make install"
end
end
end