blob: d43b5dd61b415b62946471a32881e16d5793966a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
require 'formula'
class Help2man < Formula
homepage 'http://www.gnu.org/software/help2man/'
url 'http://ftpmirror.gnu.org/help2man/help2man-1.45.1.tar.xz'
mirror 'http://ftp.gnu.org/gnu/help2man/help2man-1.45.1.tar.xz'
sha256 'c70fc791e6d13240327955de355244371b00bb1c9e247d5693ed601b716467c2'
bottle do
cellar :any
sha1 "8ee54313de90e7362ac98f5b93adaad3de1986e6" => :mavericks
sha1 "8de37051ce5504b73ebe067cc38ec0063f6f9540" => :mountain_lion
sha1 "26c6736453c30840a662fffe55172cfbe300e4ef" => :lion
end
def install
# install is not parallel safe
# see https://github.com/Homebrew/homebrew/issues/12609
ENV.j1
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end
|