homebrew-core/Formula/help2man.rb
Jack Nagel fa3d89a7c0 Use automatic mirror selection for GNU downloads
It seems that the main GNU download site has issues in some places
outside the U.S., so we'll use the provided "ftpmirror.gnu.org" to pick
a nearby mirror.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2011-09-12 15:08:20 -05:00

16 lines
404 B
Ruby

require 'formula'
class Help2man < Formula
url 'http://ftpmirror.gnu.org/help2man/help2man-1.40.4.tar.gz'
homepage 'http://www.gnu.org/software/help2man/'
md5 '4d79dc7cb7c20019c2a3650d35259c45'
def install
system "./configure", "--prefix=#{prefix}"
# Skip making the "info" files.
system "make help2man man"
bin.install "help2man"
man1.install gzip("help2man.1")
end
end