docs: Replaced licence (now the code is GPL 3.0), author list, and updated installation instructions

Change-Id: Ieea063c7c4c5e1f08b8c8eb557493f78dfc0941e
diff --git a/INSTALL.md b/INSTALL.md
index 91375c7..63f3c87 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -1,9 +1,40 @@
+NFD: NDN Forwarding Daemon
+==========================
 
 ## Prerequisites
 
-* Boost libraries >= 1.42
-* [NDN-CPP-dev library](https://github.com/cawka/ndn-cpp)
-* `pkg-config`
+* [ndn-cpp-dev library](https://github.com/named-data/ndn-cpp-dev) and
+  its requirements:
+
+    * `libcrypto`
+    * `libsqlite3`
+    * `libcrypto++`
+    * `pkg-config`
+    * Boost libraries (>= 1.48)
+    * OSX Security framework (on OSX platform only)
+
+    Refer to https://github.com/named-data/ndn-cpp-dev/blob/master/INSTALL.md
+    for detailed installation instructions.
+
+* `libpcap`
+
+    Comes with base on Mac OS X 10.8 and 10.9:
+
+    On Ubuntu >= 12.04:
+
+        sudo apt-get install libpcap-dev
+
+To build API documentation:
+
+* `doxygen`
+
+    On Mac OS X 10.8 and 10.9 with macports:
+
+        sudo port install doxygen
+
+    On Ubuntu >= 12.04:
+
+        sudo apt-get install doxygen
 
 ## Build
 
@@ -11,9 +42,13 @@
 
     ./waf configure
     ./waf
-
-If NFD needs to be installed
-
     sudo ./waf install
 
+Refer to `README.md` file for more options that can be used during `configure` stage and how to properly configure and run NFD.
 
+In some configurations, configuration step may require small modification:
+
+    export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:/usr/lib/pkgconfig:/usr/lib64/pkgconfig
+    ./waf configure
+    ./waf
+    sudo ./waf install