]> gitweb.michael.orlitzky.com - spline3.git/commitdiff
Remove the 'src_html' makefile target and replace it with 'dist'.
authorMichael Orlitzky <michael@orlitzky.com>
Fri, 24 Aug 2012 15:18:16 +0000 (11:18 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Fri, 24 Aug 2012 15:18:16 +0000 (11:18 -0400)
Add a few fields to the cabal file.
Shorten the synopsis.

makefile
spline3.cabal

index 367819017a7f02c93d7bc754888fe40906413c58..850626fdc4261e8c46133b28d1c1fd3dd07baa50 100644 (file)
--- a/makefile
+++ b/makefile
@@ -2,7 +2,7 @@ BIN           = dist/build/spline3/spline3
 DOCTESTS_BIN  = dist/build/doctests/doctests
 TESTSUITE_BIN = dist/build/testsuite/testsuite
 
-.PHONY : test publish_doc doc src_html hlint
+.PHONY : test publish_doc doc dist hlint
 
 $(BIN): src/*.hs
        runghc Setup.hs clean
@@ -36,8 +36,9 @@ clean:
 test: $(BIN) $(DOCTESTS_BIN) $(TESTSUITE_BIN)
        runghc Setup.hs test
 
-src_html:
-       util/hscolour_srcs
+dist:
+       runghc Setup.hs configure
+       runghc Setup.hs sdist
 
 # Neither 'haddock' nor 'hscolour' seem to work properly.
 doc: src/*.hs
index 6b725613379bc3678734f507135b6640f1ea21e8..fe196f19f27c415d9546b8819af05cf9da483cbd 100644 (file)
@@ -3,9 +3,18 @@ version:        0.0
 cabal-version:  >= 1.8
 author:         Michael Orlitzky
 maintainer:    Michael Orlitzky <michael@orlitzky.com>
+license:        GPL-3
+license-file:   doc/LICENSE
+homepage:       http://michael.orlitzky.com/code/spline3.php
+bug-reports:    mailto:michael@orlitzky.com
+category:       Math
 synopsis:
-  An implementation of the Sorokina and Zeilfelder
-  trivariate spline scheme on type-6 tetrahedral partitions.
+  A parallel implementation of the Sorokina/Zeilfelder spline scheme.
+description:
+  Interpolate volumetric data according to "Local quasi-interpolation
+  by cubic C^1 splines on type-6 tetrahedral partitions." The defaults
+  are tailored to the MRI data contained in data/mri.bin from the
+  Stanford volume data archive at http://graphics.stanford.edu/data/voldata/.
 build-type:     Simple
 
 flag HPC