blob: 980ef26e18abb3c2b27ecc6d3199e11d6be0a7d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
require 'formula'
class GnuTar < Formula
url 'ftp://ftp.gnu.org/gnu/tar/tar-1.23.tar.gz'
homepage 'http://www.gnu.org/software/tar/'
md5 'fe81d950b61cb2f45619e1fcef97ce60'
def options
[['--default-names', "Do NOT prepend 'g' to the binary; will override system tar."]]
end
def install
args = [ "--prefix=#{prefix}" , "--mandir=#{man}" ]
args << "--program-prefix=g" unless ARGV.include? '--default-names'
system "./configure", *args
system "make install"
end
end
|