blob: 2a785e0ca43ed277bf07f466b1c539e7f10c66c6 (
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
25
26
27
|
require 'formula'
class Gawk < Formula
homepage 'http://www.gnu.org/software/gawk/'
url 'http://ftpmirror.gnu.org/gawk/gawk-4.1.0.tar.xz'
mirror 'http://ftp.gnu.org/gnu/gawk/gawk-4.1.0.tar.xz'
sha1 'caabca3c1a59d05807c826c45a4639b82cad612a'
depends_on 'xz' => :build
fails_with :llvm do
build 2326
cause "Undefined symbols when linking"
end
def install
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--prefix=#{prefix}",
"--without-readline",
"--without-mpfr",
"--without-libsigsegv-prefix"
system "make"
system "make check"
system "make install"
end
end
|