aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorOlle Lundberg2010-12-15 11:24:27 +0100
committerMike McQuaid2010-12-22 20:58:52 +0000
commit1f5aeb2737e48edd7bf753c5583705b7965aac7b (patch)
treecff1eaa5604390cfe65573af60150abbe3767c5a /Library
parent6cfb227f41edf2471e36e6a42bc3e484ad225ebe (diff)
downloadhomebrew-1f5aeb2737e48edd7bf753c5583705b7965aac7b.tar.bz2
Added plzip
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/plzip.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/plzip.rb b/Library/Formula/plzip.rb
new file mode 100644
index 000000000..cb66ac596
--- /dev/null
+++ b/Library/Formula/plzip.rb
@@ -0,0 +1,15 @@
+require 'formula'
+
+class Plzip <Formula
+ url 'http://download.savannah.gnu.org/releases/lzip/plzip-0.7.tar.gz'
+ homepage 'http://www.nongnu.org/lzip/plzip.html'
+ md5 '8c9bf624ceeb7ff26122137937737c81'
+
+ depends_on 'lzlib'
+
+ def install
+ system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ "--prefix=#{prefix}"
+ system "make install"
+ end
+end