81a869cfbf
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
26 lines
770 B
Ruby
26 lines
770 B
Ruby
require 'formula'
|
|
|
|
class Pcre < Formula
|
|
url 'ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.13.tar.bz2'
|
|
homepage 'http://www.pcre.org/'
|
|
md5 '5e595edbcded141813fa1a10dbce05cb'
|
|
|
|
fails_with_llvm "Bus error in ld on SL 10.6.4", :build => 2326
|
|
|
|
def options
|
|
[["--universal", "Build a universal binary."]]
|
|
end
|
|
|
|
def install
|
|
ENV.universal_binary if ARGV.build_universal?
|
|
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
"--enable-utf8",
|
|
"--enable-unicode-properties",
|
|
"--enable-pcregrep-libz",
|
|
"--enable-pcregrep-libbz2"
|
|
system "make test"
|
|
system "make install"
|
|
end
|
|
end
|