aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAndy Georges2012-10-22 16:03:12 +0200
committerAdam Vandenberg2012-10-22 10:23:20 -0700
commitfcee5ed9398a96246ec1144e33dbf7f1865859f4 (patch)
tree3ed3a5fb720a9797f195a942dfef1a7b45199072 /Library
parent5cc9c5b7bca3290792939d504c68381e93376071 (diff)
downloadhomebrew-fcee5ed9398a96246ec1144e33dbf7f1865859f4.tar.bz2
General Preprocessor Package 2.24
Closes #15596. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/gpp.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/gpp.rb b/Library/Formula/gpp.rb
new file mode 100644
index 000000000..50273364b
--- /dev/null
+++ b/Library/Formula/gpp.rb
@@ -0,0 +1,15 @@
+require 'formula'
+
+class Gpp < Formula
+ homepage 'http://en.nothingisreal.com/wiki/GPP'
+ url 'http://files.nothingisreal.com/software/gpp/gpp-2.24.tar.bz2'
+ sha1 '4d79bc151bd16f45494b3719d401d670c4e9d0a4'
+
+ def install
+ system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ "--prefix=#{prefix}", "--mandir=#{man}"
+ system "make"
+ system "make check"
+ system "make install"
+ end
+end