diff --git a/README b/README
deleted file mode 100644
--- a/README
+++ /dev/null
@@ -1,20 +0,0 @@
-truelevel -- audio file compresor / limiter
-version 0.1
-Bart Massey <bart@cs.pdx.edu>
-8 March 2008
-
-This program is a simple command-line compressor / limiter
-for WAVE format audio files.  There is precious little
-documentation at this point; that needs to be fixed soon.
-
-I have used this code with ghc 6.6 and ghc 6.8 on Linux,
-although the current cabal setup has only been tested with
-cabal 1.2 and ghc 6.8.  Other than the lack of
-documentation, it is a fairly standard Hackage-ready
-package, to the extent I know how to construct such.
-
-I'm not really working on this Haskell code any longer; I
-rewrote it in Java for a project I'm working on.  However, I
-think it's a nice demo app for my WAVE library.
-
-Have fun with it, and let me know if there are problems.
diff --git a/README.md b/README.md
new file mode 100644
--- /dev/null
+++ b/README.md
@@ -0,0 +1,16 @@
+# truelevel -- audio file compresor / limiter
+Copyright &copy; 2006-2014 Bart Massey
+
+This program is a simple command-line compressor / limiter
+for WAVE format audio files.  There is precious little
+documentation at this point; that needs to be fixed soon.
+
+I'm not really working on this Haskell code any longer; I
+rewrote it in Java for a project I'm working on.  However, I
+think it's a nice demo app for my
+[WAVE library](http://github.com/BartMassey/WAVE).
+
+This program is licensed under the "3-clause 'new' BSD
+License". Please see the file `COPYING` in this distribution
+for license terms.
+
diff --git a/Setup.hs b/Setup.hs
--- a/Setup.hs
+++ b/Setup.hs
@@ -1,7 +1,2 @@
---- Copyright (C) 2007 Bart Massey
---- ALL RIGHTS RESERVED
---- Please see the file COPYING in this software
---- distribution for license information.
-
 import Distribution.Simple
 main = defaultMain
diff --git a/truelevel.cabal b/truelevel.cabal
--- a/truelevel.cabal
+++ b/truelevel.cabal
@@ -2,18 +2,31 @@
 Build-Type: Simple
 Description: An audio file compressor / limiter.  This
              program will adjust the dynamic range of a WAVE file.
-Version: 0.1.2
+Version: 0.1.3
 License: BSD3
 License-File: COPYING
-Copyright: Copyright (C) 2006-2008 Bart Massey
+Copyright: Copyright (c) 2006-2014 Bart Massey
 Author: Bart Massey <bart@cs.pdx.edu>
 Maintainer: Bart Massey <bart@cs.pdx.edu>
-Homepage: http://wiki.cs.pdx.edu/bartforge/truelevel
+Homepage: http://github.com/BartMassey/truelevel
 Stability: Alpha
 Synopsis: Audio file compressor-limiter
 Category: Sound
-Build-Depends: base, WAVE, parseargs
-Extra-Source-Files: README
+Extra-Source-Files: README.md
+Cabal-Version: >=1.10
 
-Executable: truelevel
-Main-Is: truelevel.hs
+Executable truelevel
+  Default-Language: Haskell2010
+  Main-Is: truelevel.hs
+  Build-Depends: base >=3&&<5, containers >=0.3&&<1,
+                 parseargs >=0.1&&<1,
+                 WAVE >=0.1&&<1
+
+Source-Repository head
+  Type: git
+  Location: https://github.com/BartMassey/truelevel.git
+
+Source-Repository this
+  Type: git
+  Location: https://github.com/BartMassey/truelevel.git
+  Tag: v0.1.3
