homebrew-core/Formula/leveldb.rb
Michael Ford 824500b240 leveldb 1.13.0
Closes Homebrew/homebrew#22234.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-08-31 08:18:03 -07:00

20 lines
630 B
Ruby

require 'formula'
class Leveldb < Formula
homepage 'https://code.google.com/p/leveldb/'
url 'https://leveldb.googlecode.com/files/leveldb-1.13.0.tar.gz'
sha1 '1da7c57b43415b3f486af31507302422e5854a20'
depends_on 'snappy' => :build
def install
system "make"
system "make leveldbutil"
include.install "include/leveldb"
bin.install 'leveldbutil'
lib.install 'libleveldb.a'
lib.install 'libleveldb.dylib.1.13' => 'libleveldb.1.13.dylib'
lib.install_symlink lib/'libleveldb.1.13.dylib' => 'libleveldb.dylib'
lib.install_symlink lib/'libleveldb.1.13.dylib' => 'libleveldb.1.dylib'
end
end