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/'
|
2014-02-15 16:14:08 +00:00
|
|
|
url 'http://ftpmirror.gnu.org/help2man/help2man-1.44.1.tar.xz'
|
|
|
|
mirror 'http://ftp.gnu.org/gnu/help2man/help2man-1.44.1.tar.xz'
|
|
|
|
sha256 '22de6846771921f455e389cdca07119d7f55b1877685b42dd5bbb9fc1377defb'
|
2010-02-07 20:18:02 +00:00
|
|
|
|
|
|
|
def install
|
2012-06-10 20:50:43 +00:00
|
|
|
# install is not parallel safe
|
2013-12-14 18:13:11 +00:00
|
|
|
# see https://github.com/Homebrew/homebrew/issues/12609
|
2012-06-10 20:50:43 +00:00
|
|
|
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
|