23 lines
696 B
Ruby
23 lines
696 B
Ruby
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'
|
|
|
|
bottle do
|
|
cellar :any
|
|
revision 1
|
|
sha1 "481357229fc529fbc72fd129e5fce856db2920c1" => :yosemite
|
|
sha1 "61bc9c993cdb79a20b81351e77c6d0b92827910e" => :mavericks
|
|
sha1 "6cce4a597e3c424471172be048a556e03a1afafc" => :mountain_lion
|
|
end
|
|
|
|
def install
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}", "--mandir=#{man}"
|
|
system "make"
|
|
system "make check"
|
|
system "make install"
|
|
end
|
|
end
|