88e93492c7
Closes Homebrew/homebrew#14141. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
28 lines
853 B
Ruby
28 lines
853 B
Ruby
require 'formula'
|
|
|
|
class Pcre < Formula
|
|
homepage 'http://www.pcre.org/'
|
|
url 'ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.31.tar.bz2'
|
|
mirror 'http://downloads.sourceforge.net/project/pcre/pcre/8.31/pcre-8.31.tar.bz2'
|
|
sha256 '5778a02535473c7ee7838ea598c19f451e63cf5eec0bf0307a688301c9078c3c'
|
|
|
|
option :universal
|
|
|
|
fails_with :llvm do
|
|
build 2326
|
|
cause "Bus error in ld on SL 10.6.4"
|
|
end
|
|
|
|
def install
|
|
ENV.universal_binary if 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
|