homebrew-core/Formula/gnu-tar.rb

21 lines
558 B
Ruby
Raw Normal View History

require 'formula'
2009-09-18 17:14:20 +00:00
class GnuTar < Formula
url 'http://ftpmirror.gnu.org/tar/tar-1.26.tar.gz'
mirror 'http://ftp.gnu.org/gnu/tar/tar-1.26.tar.gz'
2009-11-18 23:43:33 +00:00
homepage 'http://www.gnu.org/software/tar/'
md5 '00d1e769c6af702c542cca54b728920d'
2009-09-18 17:14:20 +00:00
def options
[['--default-names', "Do NOT prepend 'g' to the binary; will override system tar."]]
end
2009-09-18 17:14:20 +00:00
def install
args = [ "--prefix=#{prefix}" , "--mandir=#{man}" ]
args << "--program-prefix=g" unless ARGV.include? '--default-names'
system "./configure", *args
2009-09-18 17:14:20 +00:00
system "make install"
end
end