196c0dbe65
Closes Homebrew/homebrew#29165. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
35 lines
1,000 B
Ruby
35 lines
1,000 B
Ruby
require 'formula'
|
|
|
|
class GnuTar < Formula
|
|
homepage 'http://www.gnu.org/software/tar/'
|
|
url 'http://ftpmirror.gnu.org/tar/tar-1.27.1.tar.gz'
|
|
mirror 'http://ftp.gnu.org/gnu/tar/tar-1.27.1.tar.gz'
|
|
sha1 '192f480cac95b1fbaff11c87a64f7092045b411b'
|
|
|
|
bottle do
|
|
sha1 "ecc6fc62b93bee896a2bd6e604c934bdb9bdc2dd" => :mavericks
|
|
sha1 "ac457284fa432dc49d5f8166c050421cb6561102" => :mountain_lion
|
|
sha1 "33c07152ade47e3b3c7bfa2d66346a0acc5ff3ef" => :lion
|
|
end
|
|
|
|
def install
|
|
args = ["--prefix=#{prefix}", "--mandir=#{man}"]
|
|
args << "--program-prefix=g"
|
|
|
|
system "./configure", *args
|
|
system "make install"
|
|
|
|
# Symlink the executable into libexec/gnubin as "tar"
|
|
(libexec/'gnubin').install_symlink bin/"gtar" => "tar"
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
gnu-tar has been installed as 'gtar'.
|
|
|
|
If you really need to use it as 'tar', you can add a 'gnubin' directory
|
|
to your PATH from your bashrc like:
|
|
|
|
PATH="#{opt_libexec}/gnubin:$PATH"
|
|
EOS
|
|
end
|
|
end
|