2011-04-22 10:24:31 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Lrzip < Formula
|
|
|
|
homepage 'http://lrzip.kolivas.org'
|
2012-09-03 19:27:19 +00:00
|
|
|
url 'http://ck.kolivas.org/apps/lrzip/lrzip-0.614.tar.bz2'
|
|
|
|
sha1 'b3c2149c9ca353f595d7f2774262244cc56a7500'
|
2011-04-22 10:24:31 +00:00
|
|
|
|
|
|
|
depends_on 'pkg-config' => :build
|
|
|
|
depends_on "lzo"
|
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}"
|
|
|
|
system "make"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|