aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-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