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

class Help2man < Formula
  url 'http://ftp.gnu.org/gnu/help2man/help2man-1.37.1.tar.gz'
  homepage 'http://www.gnu.org/software/help2man/'
  md5 '371b5cc74fe9c2ea3ee1ca23c19b19a8'

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

    # Skip making the "info" files.
    system "make help2man man"
    bin.install "help2man"
    man1.install gzip("help2man.1")
  end
end