blob: a4049c2a3f3cc49a02945f9ad9b54bbcd11634dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
require 'formula'
class Autoconf213 <Formula
url 'http://ftp.gnu.org/pub/gnu/autoconf/autoconf-2.13.tar.gz'
md5 '9de56d4a161a723228220b0f425dc711'
homepage 'http://www.gnu.org/software/autoconf/'
def keg_only?
:provided_by_osx
end
def install
system "./configure", "--disable-debug",
"--program-suffix=213",
"--prefix=#{prefix}",
"--infodir=#{info}",
"--datadir=#{prefix}/share/autoconf213"
system "make install"
end
end
|