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-02-21 10:08:49 +00:00
|
|
|
url 'http://ftpmirror.gnu.org/help2man/help2man-1.40.6.tar.gz'
|
|
|
|
mirror 'http://ftp.gnu.org/gnu/help2man/help2man-1.40.6.tar.gz'
|
|
|
|
sha1 '4a34dd9e74e1c17e2654269b41f1010ea1d9a387'
|
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
|