aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/pth.rb
blob: 64a3c6249c3e2db5852cff8f46fa9fa21ca90d50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'formula'

class Pth <Formula
  url 'ftp://ftp.gnu.org/gnu/pth/pth-2.0.7.tar.gz'
  homepage 'http://www.gnu.org/software/pth/'
  md5 '9cb4a25331a4c4db866a31cbe507c793'

  def install
    ENV.deparallelize
    system "./configure",
            "--prefix=#{prefix}",
            "--disable-debug",
            "--disable-dependency-tracking"
    system "make install"
  end
end