aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorthalamus2011-04-22 11:24:31 +0100
committerAdam Vandenberg2011-06-08 21:32:51 -0700
commitc6846167a250af6dc8979d0e0b6162f95a1445e2 (patch)
tree6905180f1e4551a6c975c9f7a9f17ecd88df780c /Library/Formula
parentb3e0b9249367433d164093af2fd7480e9eb88bf0 (diff)
downloadhomebrew-c6846167a250af6dc8979d0e0b6162f95a1445e2.tar.bz2
lrzip v0.604
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/lrzip.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/lrzip.rb b/Library/Formula/lrzip.rb
new file mode 100644
index 000000000..48a340061
--- /dev/null
+++ b/Library/Formula/lrzip.rb
@@ -0,0 +1,17 @@
+require 'formula'
+
+class Lrzip < Formula
+ url 'http://ck.kolivas.org/apps/lrzip/lrzip-0.604.tar.bz2'
+ homepage 'http://lrzip.kolivas.org'
+ md5 '9a405bf7fa04479abb24c4e3074ea843'
+
+ depends_on 'pkg-config' => :build
+ depends_on "lzo"
+
+ def install
+ system "./configure", "--disable-dependency-tracking",
+ "--prefix=#{prefix}"
+ system "make"
+ system "make install"
+ end
+end