athenalabs / acorn-player

Acorn Player
MIT License
22 stars 0 forks source link

Point out closure dependency in README #120

Closed jbenet closed 11 years ago

jbenet commented 11 years ago

We took the closure submodule out, but we forgot to point that out in the README.

Perhaps add the following:

closure compiler:

# install it
brew install closure-compiler

# note the date on the jar path may be different in your installation
ln -s /usr/local/Cellar/closure-compiler/20120430/libexec/build/compiler.jar lib/closure/compiler.jar

closure library:

# we recommend installing it outside `acorn-player`, and symlinking it in:
cd ..
git clone https://github.com/jarib/google-closure-library.git closure-library
cd acorn-player/lib/closure
ln -s ../../../closure-library library

# you can also clone it directly into the project:
git clone https://github.com/jarib/google-closure-library.git library
jbenet commented 11 years ago

Am i missing anything?

Also, the # of steps to get to develop is ridiculous. Makefile?

@ali01 @tenedor

jbenet commented 11 years ago

@anshukla try the above?