# HG changeset patch # User Robert McIntyre # Date 1361879734 0 # Node ID b90c645dac33b1901d8b3a2ecdc8a6a090a08022 # Parent bd664a9bd8634d08dcc9dd674ab6c2460dcdc849 better readme. diff -r bd664a9bd863 -r b90c645dac33 README --- a/README Tue Feb 26 11:28:45 2013 +0000 +++ b/README Tue Feb 26 11:55:34 2013 +0000 @@ -70,6 +70,33 @@ make make install +To fine tune the installation, pass different flags to the configure +script, in particular the --prefix flag. run `./configure --help` to +see available options and defaults. +* Using the clojure code. +If you're interested in hacking on the clojure code, then once you've +completed the compilation instructions above, you will need to launch +clojure (however you do it) and include the following things on your +classpath (all directories are relative to project root). +/clojure --- the clojure source files +/java/dist/* --- JNI bindings +/java/lib/* --- tritonus libs + +You will also need to put the compiled library file produced from the +"How to Compile" section in a place where it can be loaded as a +dynamic library. You can do this by running `make install` where you +had previously configured the package to install in a system +directory, or you can use the LD_LIBRARY_PATH to point your system to +the directory containing the library file. + + +* Bugs + +Please let me know if you find any bugs, or have any comments, at +rlm@mit.edu. + + +