diff --git a/README b/README
--- a/README
+++ b/README
@@ -1,5 +1,17 @@
-If you care at all about performance, make sure you configure the library
-to use the best CBLAS installed on your system.  See the cabal file for
-details. To use atlas, run
+To build the package, there is no need to run the configure script.  Just
+use the standard cabal commands:
 
-    runhaskell Setup.lhs configure -fatlas
+    runhaskell Setup.lhs configure
+    runhaskell Setup.lhs build
+    runhaskell Setup.lhs install
+    
+The package uses a script to find what CBLAS library to link with.  To link
+with a custom CBLAS, add the "--with-cblas=<lib>" argument to 
+--configure-option,
+e.g
+
+    runhaskell Setup.lhs configure --configure-option="--with-cblas=<lib>"
+
+To build this package from the repository, first run
+    aclocal -I m4
+    autoreconf
diff --git a/gsl-random.cabal b/gsl-random.cabal
--- a/gsl-random.cabal
+++ b/gsl-random.cabal
@@ -1,6 +1,6 @@
 name:            gsl-random
-version:         0.2.1
-homepage:        http://stat.stanford.edu/~patperry/code/gsl-random.git
+version:         0.2.2
+homepage:        http://github.com/patperry/gsl-random
 synopsis:        Bindings the the GSL random number generation facilities.
 description:
     Bindings to the GNU Scientific Library random number generators and random
@@ -13,7 +13,7 @@
 author:          Patrick Perry
 maintainer:      Patrick Perry <patperry@stanford.edu>
 cabal-version:   >= 1.2.0
-build-type:      Simple
+build-type:      Configure
 tested-with:     GHC == 6.10.1
 
 extra-source-files:     README configure.ac configure
