Added lzop formula
Signed-off-by: Adam Vandenberg <flangy@gmail.com> * Fix man path
This commit is contained in:
parent
b11b77c003
commit
3ce2fa0d87
1 changed files with 16 additions and 0 deletions
16
Formula/lzop.rb
Normal file
16
Formula/lzop.rb
Normal 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
|
Loading…
Reference in a new issue