aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorBrett Koonce2013-01-17 20:47:14 -0600
committerAdam Vandenberg2013-01-17 20:18:28 -0800
commitcecd06a78847b219f8db9f92fb145d32087c78bb (patch)
tree6bfc346a49f9fc652fcb92562d6d966b1749ad20 /Library
parent555716923bed8d7059377027e5dbc1333abfd067 (diff)
downloadhomebrew-cecd06a78847b219f8db9f92fb145d32087c78bb.tar.bz2
leveldb 1.9.0
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/leveldb.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/Library/Formula/leveldb.rb b/Library/Formula/leveldb.rb
index e680a6942..e51cb4a5b 100644
--- a/Library/Formula/leveldb.rb
+++ b/Library/Formula/leveldb.rb
@@ -2,8 +2,8 @@ require 'formula'
class Leveldb < Formula
homepage 'https://code.google.com/p/leveldb/'
- url 'https://leveldb.googlecode.com/files/leveldb-1.8.0.tar.gz'
- sha1 'af79e0105099dd7d1223f45eb685475223043e21'
+ url 'https://leveldb.googlecode.com/files/leveldb-1.9.0.tar.gz'
+ sha1 '4d832277120912211998a2334fb975b995d51885'
depends_on 'snappy' => :build
@@ -11,8 +11,8 @@ class Leveldb < Formula
system "make"
include.install "include/leveldb"
lib.install 'libleveldb.a'
- lib.install 'libleveldb.dylib.1.8' => 'libleveldb.1.8.dylib'
- lib.install_symlink lib/'libleveldb.1.8.dylib' => 'libleveldb.dylib'
- lib.install_symlink lib/'libleveldb.1.8.dylib' => 'libleveldb.1.dylib'
+ lib.install 'libleveldb.dylib.1.9' => 'libleveldb.1.9.dylib'
+ lib.install_symlink lib/'libleveldb.1.9.dylib' => 'libleveldb.dylib'
+ lib.install_symlink lib/'libleveldb.1.9.dylib' => 'libleveldb.1.dylib'
end
end