homebrew-core/Formula/help2man.rb

17 lines
402 B
Ruby
Raw Normal View History

2010-02-07 20:18:02 +00:00
require 'formula'
2011-03-10 05:11:03 +00:00
class Help2man < Formula
2010-02-07 20:18:02 +00:00
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}"
2010-02-07 20:18:02 +00:00
# Skip making the "info" files.
system "make help2man man"
bin.install "help2man"
man1.install gzip("help2man.1")
end
end