diff options
| author | Robert Shaw | 2010-03-11 17:56:32 -0800 |
|---|---|---|
| committer | Adam Vandenberg | 2010-03-11 23:08:23 -0800 |
| commit | 55d2218702df73daf989e0ebba5f3140010951bf (patch) | |
| tree | 3675f58c2ca96941a2bef77614a495bf57510ea8 /Library/Formula | |
| parent | c1c1583d6cc94f7d70b8a935da529eb41cb66dfe (diff) | |
| download | homebrew-55d2218702df73daf989e0ebba5f3140010951bf.tar.bz2 | |
New formula: lzo
Formula for LZO version 2.03.
Note: ASM versions compile disabled.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/lzo.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/lzo.rb b/Library/Formula/lzo.rb new file mode 100644 index 000000000..b610f2f42 --- /dev/null +++ b/Library/Formula/lzo.rb @@ -0,0 +1,12 @@ +require 'formula' + +class Lzo <Formula + url 'http://www.oberhumer.com/opensource/lzo/download/lzo-2.03.tar.gz' + homepage 'http://www.oberhumer.com/opensource/lzo/' + md5 '0c3d078c2e8ea5a88971089a2f02a726' + + def install + system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking", "--disable-asm", "--enable-shared=yes" + system "make install" + end +end |
