f981b13696
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
13 lines
402 B
Ruby
13 lines
402 B
Ruby
require 'formula'
|
|
|
|
class Help2man < Formula
|
|
homepage 'http://www.gnu.org/software/help2man/'
|
|
url 'http://ftpmirror.gnu.org/help2man/help2man-1.40.10.tar.gz'
|
|
mirror 'http://ftp.gnu.org/gnu/help2man/help2man-1.40.10.tar.gz'
|
|
sha256 'f7c85b9af84a87d7da912b62dadf426118841750ed1e4598787a54fddaf82b9c'
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|