homebrew-core/Formula/help2man.rb

14 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
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'
2010-02-07 20:18:02 +00:00
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
2010-02-07 20:18:02 +00:00
end
end