aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/pcre++.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/pcre++.rb b/Library/Formula/pcre++.rb
new file mode 100644
index 000000000..9897b7a04
--- /dev/null
+++ b/Library/Formula/pcre++.rb
@@ -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