diff options
| author | David Höppner | 2010-02-02 13:17:29 +0100 |
|---|---|---|
| committer | David Höppner | 2010-02-02 13:17:29 +0100 |
| commit | 978883f7bec1a7ab3ef5313b0d21eaeb4b93f7e9 (patch) | |
| tree | b9e03a52729509795cbaeda263dc349d0b30b170 /Library | |
| parent | 2559269e439bcb70a6e17af128c29f59c856fcf3 (diff) | |
| download | homebrew-978883f7bec1a7ab3ef5313b0d21eaeb4b93f7e9.tar.bz2 | |
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.
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/libzzip.rb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/libzzip.rb b/Library/Formula/libzzip.rb new file mode 100644 index 000000000..9fcc0c0a9 --- /dev/null +++ b/Library/Formula/libzzip.rb @@ -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 |
