blob: e1bfd186818a4635611a2ac45ca545d3fbfb0a5c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
require 'formula'
class Help2man < Formula
url 'http://ftp.gnu.org/gnu/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
|