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
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
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