homebrew-core/Formula/leveldb.rb
Michael Ford b905b4614f leveldb 1.14.0
Closes Homebrew/homebrew#22920.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-09-29 01:55:55 -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.14.0.tar.gz'
sha1 '641d54df4aaf7ee569ae003cfbdb888ebdee0d7f'
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.14' => 'libleveldb.1.14.dylib'
lib.install_symlink lib/'libleveldb.1.14.dylib' => 'libleveldb.dylib'
lib.install_symlink lib/'libleveldb.1.14.dylib' => 'libleveldb.1.dylib'
end
end