homebrew-core/Formula/pcre.rb

26 lines
760 B
Ruby
Raw Normal View History

require 'formula'
class Pcre <Formula
url 'ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.11.tar.bz2'
homepage 'http://www.pcre.org/'
md5 'ef907b8792ec7f90f0dcd773848f0b3b'
def options
[["--universal", "Build a universal binary."]]
end
def install
fails_with_llvm "Bus error in ld on SL 10.6.4"
ENV.universal_binary if ARGV.include? "--universal"
2010-06-25 17:06:19 +00:00
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--enable-utf8",
"--enable-unicode-properties",
"--enable-pcregrep-libz",
"--enable-pcregrep-libbz2"
2010-08-02 11:59:26 +00:00
system "make test"
system "make install"
end
end