homebrew-core/Formula/snappy.rb
Christian Köstlin c9b73483e3 snappy 1.1.0
Closes Homebrew/homebrew#17867.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2013-02-16 20:42:30 -06:00

18 lines
457 B
Ruby

require 'formula'
class Snappy < Formula
homepage 'http://snappy.googlecode.com'
url 'http://snappy.googlecode.com/files/snappy-1.1.0.tar.gz'
sha1 '17cde387e0f19112d647095624e5ed4051b753be'
option :universal
depends_on 'pkg-config' => :build
def install
ENV.universal_binary if build.universal?
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end