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/'
|
2013-01-01 04:49:52 +00:00
|
|
|
url 'http://ftpmirror.gnu.org/help2man/help2man-1.41.1.tar.gz'
|
|
|
|
mirror 'http://ftp.gnu.org/gnu/help2man/help2man-1.41.1.tar.gz'
|
|
|
|
sha256 '3a650ada9453700e34355770d4f74f257fb1dda1a0f24f44b8a3c1d4cb1ee40d'
|
2010-02-07 20:18:02 +00:00
|
|
|
|
|
|
|
def install
|
2012-06-10 20:50:43 +00:00
|
|
|
# install is not parallel safe
|
|
|
|
# see https://github.com/mxcl/homebrew/issues/12609
|
|
|
|
ENV.j1
|
2012-06-06 21:42:57 +00:00
|
|
|
|
2010-08-21 18:28:03 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}"
|
2012-06-05 20:12:15 +00:00
|
|
|
system "make install"
|
2010-02-07 20:18:02 +00:00
|
|
|
end
|
|
|
|
end
|