lrzip v0.604

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
thalamus 2011-04-22 11:24:31 +01:00 committed by Adam Vandenberg
parent 3ffaa370dd
commit a08546603b
1 changed files with 17 additions and 0 deletions

17
Formula/lrzip.rb Normal file
View File

@ -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