tracker
Change-Id: I8f8ac81f9c4d7c7650cd64d2dade701dc6c11dce
diff --git a/ttorrent-master/INSTALL b/ttorrent-master/INSTALL
new file mode 100644
index 0000000..d33121e
--- /dev/null
+++ b/ttorrent-master/INSTALL
@@ -0,0 +1,28 @@
+Howto build and use the BitTorrent library
+==========================================
+
+Dependencies
+------------
+
+This Java implementation of the BitTorrent protocol implements a BitTorrent
+tracker (an HTTP service), and a BitTorrent client. The only dependencies of
+the BitTorrent library are:
+
+* the log4j library
+* the slf4j logging library
+* the SimpleHTTPFramework
+
+These libraries are provided in the lib/ directory, and are automatically
+included in the JAR file created by the build process.
+
+
+Building the distribution JAR
+-----------------------------
+
+Simply execute the following command:
+
+ $ mvn package
+
+To build the library's JAR file (in the target/ directory). You can then import
+this JAR file into your Java project and start using the Java BitTorrent
+library.