Skip to content

Commit

Permalink
brianfrankcoopergh-54 updated Makefile and added doc for mapkeeper.
Browse files Browse the repository at this point in the history
  • Loading branch information
Michi Mutsuzaki committed Dec 3, 2011
1 parent d5120fb commit 20588e2
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
8 changes: 8 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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)\
Expand Down Expand Up @@ -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
7 changes: 6 additions & 1 deletion db/mapkeeper/lib/README
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
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 comments on commit 20588e2

Please sign in to comment.