diff options
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 |
