New formula libzzip

The ZZIPlib provides read access on ZIP-archives. The library uses only
the patent-free compression-algorithms supported by Zlib. It provides
functions that transparently access files being either real files or zipped
files, both with the same filepath.
master
David Höppner 2010-02-02 13:17:29 +01:00
parent 0d24253ec7
commit a010d3405f
1 changed files with 14 additions and 0 deletions

14
Formula/libzzip.rb Normal file
View File

@ -0,0 +1,14 @@
require 'formula'
class Libzzip <Formula
url 'http://downloads.sourceforge.net/project/zziplib/zziplib13/0.13.57/zziplib-0.13.57.tar.bz2'
homepage 'http://sourceforge.net/projects/zziplib/'
md5 '7ebb644bbd880b130435ce6dcbd3cdd3'
depends_on 'pkg-config'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end