Skip to content
Snippets Groups Projects
Commit 2ce34730 authored by Michi Mutsuzaki's avatar Michi Mutsuzaki
Browse files

gh-54 updated Makefile and added doc for mapkeeper.

parent eb2d950f
No related branches found
No related tags found
No related merge requests found
......@@ -20,6 +20,8 @@ REDIS_DIR=db/redis/lib
REDIS_FILE=jedis-2.0.0.jar
VOLDEMORT_DIR=db/voldemort/lib
VOLDEMORT_FILE=voldemort-0.90.1.tar.gz
MAPKEEPER_DIR=db/mapkeeper/lib
MAPKEEPER_FILE=mapkeeper.jar
.PHONY: build
build: download-database-deps
......@@ -35,6 +37,7 @@ download-database-deps: $(CASSANDRA_5_DIR)/$(CASSANDRA_5_FILE) \
$(MONGODB_DIR)/$(MONGODB_FILE) \
$(REDIS_DIR)/$(REDIS_FILE) \
$(VOLDEMORT_DIR)/$(VOLDEMORT_FILE) \
$(MAPKEEPER_DIR)/$(MAPKEEPER_FILE) \
$(CASSANDRA_5_DIR)/$(CASSANDRA_5_FILE) :
wget http://archive.apache.org/dist/cassandra/0.5.1/$(CASSANDRA_5_FILE)\
......@@ -79,3 +82,8 @@ $(VOLDEMORT_DIR)/$(VOLDEMORT_FILE) :
-O $(VOLDEMORT_DIR)/$(VOLDEMORT_FILE)
tar -C $(VOLDEMORT_DIR) -zxf $(VOLDEMORT_DIR)/$(VOLDEMORT_FILE)
$(MAPKEEPER_DIR)/$(MAPKEEPER_FILE) :
wget https://raw.github.com/m1ch1/mapkeeper/master/lib/mapkeeper.jar \
-O $(MAPKEEPER_DIR)/$(MAPKEEPER_FILE)
wget https://raw.github.com/m1ch1/mapkeeper/master/lib/libthrift-0.6.1.jar \
-O $(MAPKEEPER_DIR)/libthrift-0.6.1.jar
This directory should contain jars for building and running MapKeeper
This directory should contain 2 jars; mapkeeper.jar and libthrift-0.6.1.jar.
To get them, do:
$ wget https://raw.github.com/m1ch1/mapkeeper/master/lib/mapkeeper.jar
$ wget https://raw.github.com/m1ch1/mapkeeper/master/lib/libthrift-0.6.1.jar
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment