homebrew-core/Formula/gnu-tar.rb
Adam Vandenberg 7bd947eb0b Update formulae for version 0.7
* Use new "url" features
* Use keg_only DSL
* Use "skip_clean :all" DSL
* Whitespace and style cleanups
* Make bash invocations less silly
* Use new man2-man8 helpers
* Remove "FileUtils." since it is included in Formula
* Use real names for deps instead of aliases
* ENV.x11 now updates path, so remove that from individual brews
2010-08-07 18:08:53 -07:00

19 lines
501 B
Ruby

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