aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
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