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
|
|
|
homepage 'http://www.gnu.org/software/help2man/'
|
2012-04-23 21:36:00 +00:00
|
|
|
url 'http://ftpmirror.gnu.org/help2man/help2man-1.40.9.tar.gz'
|
|
|
|
mirror 'http://ftp.gnu.org/gnu/help2man/help2man-1.40.9.tar.gz'
|
|
|
|
sha1 '3957023ee890ec391b539236f3f7c5b89b240e3f'
|
2010-02-07 20:18:02 +00:00
|
|
|
|
|
|
|
def install
|
2010-08-21 18:28:03 +00:00
|
|
|
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
|