aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/gpp.rb
blob: 50273364bdc1a42a07bb1010edd4ad1d5d368b92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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