blob: c2ce2a5f63ca2cd837e4de4425d05c589944cad0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
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
|