GNU help2man

This commit is contained in:
Adam Vandenberg 2010-02-07 12:18:02 -08:00
parent 84f4088f9c
commit df74d97fe2

16
Formula/help2man.rb Normal file
View file

@ -0,0 +1,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}", "--disable-debug", "--disable-dependency-tracking"
# Skip making the "info" files.
system "make help2man man"
bin.install "help2man"
man1.install gzip("help2man.1")
end
end