diff --git a/Bindings/Sound/SC3.hsc b/Bindings/Sound/SC3.hsc
--- a/Bindings/Sound/SC3.hsc
+++ b/Bindings/Sound/SC3.hsc
@@ -41,6 +41,7 @@
 	#field mUGensPluginPath                  , CString
 	#field mOutDeviceName                    , CString
 	#field mRestrictedPath                   , CString
+	#field mSharedMemoryID                   , CInt
 #stoptype
 
 #cinline kDefaultWorldOptions , IO (Ptr <struct WorldOptions>)
diff --git a/bindings-sc3.cabal b/bindings-sc3.cabal
--- a/bindings-sc3.cabal
+++ b/bindings-sc3.cabal
@@ -1,15 +1,38 @@
 Name:                   bindings-sc3
-Version:                0.0.0
+Version:                0.3.0
 Synopsis:               Bindings to the SuperCollider synthesis engine library.
-Description:            This library provides low level bindings to the SuperCollider synthesis engine library (@libscsynth@). If you are looking for a higher level Haskell interface, please use the hsc3-process package (<http://hackage.haskell.org/package/hsc3-process>).
+Description:
+    This library provides low level bindings to the SuperCollider synthesis
+    engine library (@libscsynth@). If you are looking for a higher level
+    Haskell interface, please use the hsc3-process package
+    (<http://hackage.haskell.org/package/hsc3-process>).
+    .
+    ChangeLog: <https://github.com/kaoskorobase/bindings-sc3/blob/master/ChangeLog.md>
+    .
+    In order to build this package, you need to first build the dynamic library
+    version of SuperCollider <supercollider.sourceforge.net> by passing
+    @-DLIBSCSYNTH=ON@ to @cmake@. Then build this library by passing the
+    location of the SuperCollider header files and dynamic library directory to
+    cabal:
+    .
+    @
+    cabal install bindings-sc3 \
+        --extra-include-dirs=$SC_SOURCES/include/common \
+        --extra-include-dirs=$SC_SOURCES/include/plugin_interface \
+        --extra-include-dirs=$SC_SOURCES/include/server \
+        --extra-library-dirs=$SC_SOURCES/server/scsynth
+    @
+    .
+    If you copy @libscsynth@ to a system library location, you may omit @--extra-library-dirs@.
 License:                GPL
 License-File:           LICENSE
-Category:               Sound
-Copyright:              Copyright (c) Stefan Kersten 2010
+Category:               FFI, Sound
+Copyright:              Copyright (c) Stefan Kersten 2010-2012
 Author:                 Stefan Kersten <sk@k-hornz.de>
 Maintainer:             Stefan Kersten <sk@k-hornz.de>
 Stability:              experimental
-Homepage:               http://space.k-hornz.de/software/hsc3-process/
+Homepage:               http://space.k-hornz.de/software/bindings-sc3/
+Bug-Reports:            http://github.com/kaoskorobase/bindings-sc3/issues/
 Tested-With:            GHC == 6.12
 Build-Type:             Simple
 Cabal-Version:          >= 1.6
@@ -27,4 +50,4 @@
 
 Source-Repository head
     Type:               git
-    Location:           git://github.com/kaoskorobase/hsc3-process.git
+    Location:           git://github.com/kaoskorobase/bindings-sc3.git
