homebrew-core/Formula/pcre.rb
Adam Vandenberg 815fb809e3 PCRE Formula
The PCRE library is a set of functions that implement regular expression
pattern matching using the same syntax and semantics as Perl 5. PCRE has its
own native API, as well as a set of wrapper functions that correspond to the
POSIX regular expression API. The PCRE library is free, even for building
commercial software.
2009-08-31 18:09:01 +01:00

12 lines
348 B
Ruby

require 'brewkit'
class Pcre <Formula
@url='ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-7.9.tar.bz2'
@homepage='http://www.pcre.org/'
@md5='b6a9669d1863423f01ea46cdf00f93dc'
def install
system "./configure", "--prefix='#{prefix}'", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end