blob: 3784fbf989790d85bb734c2125289b211d3563e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
require 'formula'
class Lzo < Formula
url 'http://www.oberhumer.com/opensource/lzo/download/lzo-2.04.tar.gz'
homepage 'http://www.oberhumer.com/opensource/lzo/'
md5 'a383c7055a310e2a71b9ecd19cfea238'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--disable-asm",
"--enable-shared=yes"
system "make install"
end
end
|