docs: Updated installation instructions, AUTHORs, and other small updates

Change-Id: Ide2046742254255322e8cb84279ffd6a4ecb9b4b
diff --git a/tests-integrated/wscript b/tests-integrated/wscript
index c0466cd..98f6dab 100644
--- a/tests-integrated/wscript
+++ b/tests-integrated/wscript
@@ -7,11 +7,11 @@
 def build(bld):
     unittests = bld.program (
         target="../integrated-tests",
-        features = "cxx cxxprogram",
-        source = bld.path.ant_glob(['**/*.cpp'],
-                                   excl = ['**/*-osx.cpp', '**/*-sqlite3.cpp']),
-        use = 'ndn-cpp-dev',
-        install_path = None,
+        features="cxx cxxprogram",
+        source=bld.path.ant_glob(['**/*.cpp'],
+                                 excl=['**/*-osx.cpp', '**/*-sqlite3.cpp']),
+        use='ndn-cpp-dev',
+        install_path=None,
         )
 
     if Utils.unversioned_sys_platform () == "darwin":
@@ -22,4 +22,3 @@
 
     if bld.env['WITH_PCH']:
         unittests.pch = "test-all.hpp"
-