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

class Help2man < Formula
  homepage 'http://www.gnu.org/software/help2man/'
  url 'http://ftpmirror.gnu.org/help2man/help2man-1.41.2.tar.gz'
  mirror 'http://ftp.gnu.org/gnu/help2man/help2man-1.41.2.tar.gz'
  sha256 '6a8c94cde314fdfd1e9e397eeebf2c57b0603c8cc2a2ec9228c7778e1a0940ab'

  def install
    # install is not parallel safe
    # see https://github.com/mxcl/homebrew/issues/12609
    ENV.j1

    system "./configure", "--prefix=#{prefix}"
    system "make install"
  end
end