GNU tar formula (for Mac OS X)
This commit is contained in:
parent
1ceee80526
commit
db593500ef
1 changed files with 14 additions and 0 deletions
14
Formula/gnu-tar.rb
Normal file
14
Formula/gnu-tar.rb
Normal 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
|
Loading…
Reference in a new issue