2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-08-31 05:31:16 +00:00
|
|
|
|
|
|
|
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
|
2009-09-25 00:14:42 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
|
2009-08-31 05:31:16 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|