diff options
| author | Dominyk Tiller | 2014-09-28 20:35:46 +0100 |
|---|---|---|
| committer | Jack Nagel | 2014-09-28 15:25:29 -0500 |
| commit | 6a47948583d808846e4d217a1ef7e6f053316a9d (patch) | |
| tree | f0992f2167bbf88080967b680d67dff59c75b45c /Library/Formula | |
| parent | e69845dd783f024b0f03ae180939aab46b9c1062 (diff) | |
| download | homebrew-6a47948583d808846e4d217a1ef7e6f053316a9d.tar.bz2 | |
Lzo 2.0.8
Version bump to close CVE-2014-4607.
Closes #32764.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/lzo.rb | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Library/Formula/lzo.rb b/Library/Formula/lzo.rb index 948b49508..1d8286746 100644 --- a/Library/Formula/lzo.rb +++ b/Library/Formula/lzo.rb @@ -1,9 +1,9 @@ -require 'formula' +require "formula" class Lzo < Formula - homepage 'http://www.oberhumer.com/opensource/lzo/' - url 'http://www.oberhumer.com/opensource/lzo/download/lzo-2.06.tar.gz' - sha256 'ff79e6f836d62d3f86ef6ce893ed65d07e638ef4d3cb952963471b4234d43e73' + homepage "http://www.oberhumer.com/opensource/lzo/" + url "http://www.oberhumer.com/opensource/lzo/download/lzo-2.08.tar.gz" + sha256 "ac1b3e4dee46febe9fd28737eb7f5692d3232ef1a01da10444394c3d47536614" bottle do cellar :any @@ -17,7 +17,7 @@ class Lzo < Formula "--prefix=#{prefix}", "--enable-shared" system "make" - system "make check" - system "make install" + system "make", "check" + system "make", "install" end end |
