Import libarchive 3.1.2 from dupes
This commit is contained in:
parent
f933f4bbaf
commit
4fb283783c
1 changed files with 18 additions and 0 deletions
18
Formula/libarchive.rb
Normal file
18
Formula/libarchive.rb
Normal file
|
@ -0,0 +1,18 @@
|
|||
require 'formula'
|
||||
|
||||
class Libarchive < Formula
|
||||
homepage 'http://www.libarchive.org'
|
||||
url 'http://www.libarchive.org/downloads/libarchive-3.1.2.tar.gz'
|
||||
sha1 '6a991777ecb0f890be931cec4aec856d1a195489'
|
||||
|
||||
keg_only :provided_by_osx
|
||||
|
||||
def install
|
||||
system "./configure", "--prefix=#{prefix}",
|
||||
"--without-lzma",
|
||||
"--without-lzo2",
|
||||
"--without-nettle",
|
||||
"--without-xml2"
|
||||
system "make install"
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue