GNU help2man
This commit is contained in:
parent
84f4088f9c
commit
df74d97fe2
1 changed files with 16 additions and 0 deletions
16
Formula/help2man.rb
Normal file
16
Formula/help2man.rb
Normal file
|
@ -0,0 +1,16 @@
|
|||
require 'formula'
|
||||
|
||||
class Help2man <Formula
|
||||
url 'http://ftp.gnu.org/gnu/help2man/help2man-1.37.1.tar.gz'
|
||||
homepage 'http://www.gnu.org/software/help2man/'
|
||||
md5 '371b5cc74fe9c2ea3ee1ca23c19b19a8'
|
||||
|
||||
def install
|
||||
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
|
||||
|
||||
# Skip making the "info" files.
|
||||
system "make help2man man"
|
||||
bin.install "help2man"
|
||||
man1.install gzip("help2man.1")
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue