aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/help2man.rb
blob: 0d93f4c35a27fbaab7299998c551e87f4c2ff065 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
require "formula"

class Help2man < Formula
  homepage "http://www.gnu.org/software/help2man/"
  url "http://ftpmirror.gnu.org/help2man/help2man-1.46.3.tar.xz"
  mirror "http://ftp.gnu.org/gnu/help2man/help2man-1.46.3.tar.xz"
  sha256 "a669dc3baf2f9fcfcf9d55d8555d1c234bc3cabd5fbe8e36e0dea4a88c222942"

  bottle do
    cellar :any
    sha1 "e9d97ada8b008f774ef1ba613bcfaf0e5366cbeb" => :mavericks
    sha1 "271ee35610e547c5d111fd422abac34ba5514303" => :mountain_lion
    sha1 "6bd18f5f15869e50452afdc9b97bd6e99c236fec" => :lion
  end

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

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