fa3d89a7c0
It seems that the main GNU download site has issues in some places outside the U.S., so we'll use the provided "ftpmirror.gnu.org" to pick a nearby mirror. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
19 lines
504 B
Ruby
19 lines
504 B
Ruby
require 'formula'
|
|
|
|
class GnuTar < Formula
|
|
url 'http://ftpmirror.gnu.org/tar/tar-1.26.tar.gz'
|
|
homepage 'http://www.gnu.org/software/tar/'
|
|
md5 '00d1e769c6af702c542cca54b728920d'
|
|
|
|
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
|