2011-02-23 18:51:26 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Gengetopt < Formula
|
2012-11-26 23:02:48 +00:00
|
|
|
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'
|
2011-02-23 18:51:26 +00:00
|
|
|
homepage 'http://www.gnu.org/software/gengetopt/'
|
2012-11-26 23:02:48 +00:00
|
|
|
sha1 'c93bdec17f247aa32b3cd6530a6f68aa430d67f5'
|
2011-02-23 18:51:26 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--mandir=#{man}"
|
2011-09-29 02:37:56 +00:00
|
|
|
|
|
|
|
ENV.deparallelize
|
2011-02-23 18:51:26 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|