aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/gnu-tar.rb
blob: 9ccf01f7887ba40f3ec14a70f96b6201a48d6aec (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.22.tar.gz'
  homepage 'http://www.gnu.org/software/tar/'
  md5 'efafad1b256e3de410f4fce5335d9c9d'

  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