diff options
| author | James Abley | 2010-04-26 15:42:56 +0100 |
|---|---|---|
| committer | Adam Vandenberg | 2010-04-26 08:37:20 -0700 |
| commit | 4690baae48f6338c0de2adcf55323754eece8420 (patch) | |
| tree | f5888a9f1677adab5583ee4f2ff8488c40ba4210 | |
| parent | 6ad3e083a9734fb4ab0b53214c2b8069ed7a1aec (diff) | |
| download | homebrew-4690baae48f6338c0de2adcf55323754eece8420.tar.bz2 | |
Added lzop formula
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
* Fix man path
| -rw-r--r-- | Library/Formula/lzop.rb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/lzop.rb b/Library/Formula/lzop.rb new file mode 100644 index 000000000..8c0c4634c --- /dev/null +++ b/Library/Formula/lzop.rb @@ -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 |
