blob: 900e94f432e1cc81c66aef6782ba733400bb06e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
require 'formula'
class Gengetopt < Formula
homepage 'http://www.gnu.org/software/gengetopt/'
url 'http://ftpmirror.gnu.org/gengetopt/gengetopt-2.22.6.tar.gz'
mirror 'http://ftp.gnu.org/gnu/gengetopt/gengetopt-2.22.6.tar.gz'
sha1 'c93bdec17f247aa32b3cd6530a6f68aa430d67f5'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}"
ENV.deparallelize
system "make install"
end
end
|