homebrew-core/Formula/pcre.rb

29 lines
853 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Pcre < Formula
homepage 'http://www.pcre.org/'
2012-12-13 01:28:25 +00:00
url 'ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.32.tar.bz2'
mirror 'http://downloads.sourceforge.net/project/pcre/pcre/8.32/pcre-8.32.tar.bz2'
sha256 'a913fb9bd058ef380a2d91847c3c23fcf98e92dc3b47cd08a53c021c5cde0f55'
option :universal
fails_with :llvm do
build 2326
cause "Bus error in ld on SL 10.6.4"
end
2011-03-21 21:24:22 +00:00
def install
ENV.universal_binary if build.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