Added lzop formula

Signed-off-by: Adam Vandenberg <flangy@gmail.com>

* Fix man path
This commit is contained in:
James Abley 2010-04-26 15:42:56 +01:00 committed by Adam Vandenberg
parent b11b77c003
commit 3ce2fa0d87

16
Formula/lzop.rb Normal file
View file

@ -0,0 +1,16 @@
require 'formula'
class Lzop <Formula
url 'http://www.lzop.org/download/lzop-1.02rc1.tar.gz'
homepage 'http://www.lzop.org/'
md5 '4b999030716b1353c3dac049b269df7a'
depends_on 'lzo'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}"
system "make install"
end
end