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

class Tclap < Formula
  homepage 'http://tclap.sourceforge.net/'
  url 'http://downloads.sourceforge.net/project/tclap/tclap-1.2.1.tar.gz'
  sha1 '4f124216dd6e6936f5af6372d921a6c51563f8fd'

  def install
    system "./configure", "--prefix=#{prefix}"
    system "make"
    # Installer scripts have problems with parallel make
    ENV.deparallelize
    system "make install"
  end
end