2013-08-05 18:57:57 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Lmdb < Formula
|
|
|
|
homepage 'http://symas.com/mdb/'
|
2014-05-21 18:09:05 +00:00
|
|
|
url 'https://gitorious.org/mdb/mdb/archive/LMDB_0.9.11.tar.gz'
|
|
|
|
sha1 '8015de70514e8b437b4bc43718a7034101efdc67'
|
2013-08-05 18:57:57 +00:00
|
|
|
|
|
|
|
head 'git://git.openldap.org/openldap.git', :branch => 'mdb.master'
|
|
|
|
|
|
|
|
def install
|
|
|
|
# .so -> .dylib
|
|
|
|
inreplace 'libraries/liblmdb/Makefile', ".so", ".dylib"
|
|
|
|
|
2014-05-21 18:09:05 +00:00
|
|
|
# fix the /share/man/man path
|
2013-08-05 18:57:57 +00:00
|
|
|
inreplace 'libraries/liblmdb/Makefile' do |s|
|
2014-05-21 18:09:05 +00:00
|
|
|
s.gsub! '$(DESTDIR)$(prefix)/man/man1', '$(DESTDIR)$(prefix)/share/man/man1'
|
2013-08-05 18:57:57 +00:00
|
|
|
end
|
|
|
|
|
2014-05-21 18:09:05 +00:00
|
|
|
man1.mkpath
|
2013-08-05 18:57:57 +00:00
|
|
|
bin.mkpath
|
|
|
|
lib.mkpath
|
|
|
|
include.mkpath
|
|
|
|
|
2014-04-17 04:25:07 +00:00
|
|
|
system "make", "-C", "libraries/liblmdb", "install", "prefix=#{prefix}"
|
2013-08-05 18:57:57 +00:00
|
|
|
end
|
|
|
|
end
|