GNU tar formula (for Mac OS X)

This commit is contained in:
Raphael Simon 2009-09-18 10:14:20 -07:00 committed by Max Howell
parent 1ceee80526
commit db593500ef

14
Formula/gnu-tar.rb Normal file
View file

@ -0,0 +1,14 @@
require 'brewkit'
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 install
system "./configure", "--prefix='#{prefix}'",
"--program-prefix=g",
"--mandir='#{man}'"
system "make install"
end
end