Added Formula for pcre++

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Peter Kristensen 2010-06-27 20:48:32 +02:00 committed by Adam Vandenberg
parent e3483ad74c
commit 8b75309a95

15
Formula/pcre++.rb Normal file
View file

@ -0,0 +1,15 @@
require 'formula'
class Pcrexx <Formula
url 'http://www.daemon.de/idisk/Apps/pcre++/pcre++-0.9.5.tar.gz'
homepage 'http://www.daemon.de/PCRE'
md5 '1fe6ea8e23ece01fde2ce5fb4746acc2'
depends_on 'pcre'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}", "--mandir=#{man}"
system "make install"
end
end