General Preprocessor Package 2.24

Closes Homebrew/homebrew#15596.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Andy Georges 2012-10-22 16:03:12 +02:00 committed by Adam Vandenberg
parent 3d8bb1dd3c
commit ad32f3cc3a

15
Formula/gpp.rb Normal file
View file

@ -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