15 lines
355 B
Ruby
15 lines
355 B
Ruby
require 'formula'
|
|
|
|
class Lzop < Formula
|
|
homepage 'http://www.lzop.org/'
|
|
url 'http://www.lzop.org/download/lzop-1.03.tar.gz'
|
|
sha1 '4ee0b49b2a6b0a13572ddca5785ee48ef4c8f80f'
|
|
|
|
depends_on 'lzo'
|
|
|
|
def install
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|