[add QuickCheck to external libs
John Meacham <john@repetae.net>**20100722122148
 Ignore-this: 5240592198a906656d4b31496292fb91
] addfile ./lib/ext/QuickCheck.cabal
hunk ./Makefile.am 58
-	safe-0.2.hl smallcheck-0.4.hl utility-ht-0.0.5.1.hl xhtml-3000.2.0.1.hl
+	safe-0.2.hl smallcheck-0.4.hl utility-ht-0.0.5.1.hl xhtml-3000.2.0.1.hl \
+	QuickCheck-1.2.0.0.hl
+
hunk ./lib/ext/QuickCheck.cabal 1
+name:		QuickCheck
+version:	1.2.0.0
+license:	BSD3
+license-file:	LICENSE
+options:   -fcpp
+author:		Koen Classen and John Hughes
+maintainer:	libraries@haskell.org
+category:	Testing
+homepage:	http://www.math.chalmers.se/~rjmh/QuickCheck/
+synopsis:	Automatic testing of Haskell programs
+description:
+	A library for testing Haskell programs automatically.
+	The programmer provides a specification of the program, in
+	the form of properties which functions should satisfy, and
+	QuickCheck then tests that the properties hold in a large number
+	of randomly generated cases.  Specifications are expressed in
+	Haskell, using combinators defined in the QuickCheck library.
+	QuickCheck provides combinators to define properties, observe
+	the distribution of test data, and define test
+	data generators.
+
+
+exposed-modules:
+  Test.QuickCheck.Batch,
+  Test.QuickCheck.Poly,
+  Test.QuickCheck.Utils,
+  Test.QuickCheck