shorten synopsis and description.

This commit is contained in:
Julia Longtin 2020-01-26 17:57:49 +00:00
parent db82133e36
commit 2574450109
2 changed files with 15 additions and 12 deletions

View File

@ -12,8 +12,10 @@ GHC=ghc
GHCVERSION=$(shell ${GHC} --version | sed "s/.*version //")
IMPLICITVERSION=$(shell cat implicit.cabal | sed -n "s/Version[: ]*\([0-9]*.*\)/\1/p")
ARCHITECTURE=$(shell uname -m | sed "s/i[3-6]86/i386/" )
# FIXME: detect this on other OSes.
OS=linux
# new-style location root. must NOT have trailing slash
BUILDROOT=dist-newstyle/build/${ARCHITECTURE}-linux/ghc-${GHCVERSION}/implicit-${IMPLICITVERSION}
BUILDROOT=dist-newstyle/build/${ARCHITECTURE}-${OS}/ghc-${GHCVERSION}/implicit-${IMPLICITVERSION}
EXEBUILDROOT=${BUILDROOT}/x/
TESTBUILDROOT=${BUILDROOT}/t/
BENCHBUILDROOT=${BUILDROOT}/b/
@ -105,8 +107,8 @@ clean:
rm -f Examples/example*.cachegrind.*
rm -f tests/*.stl
rm -rf docs/parser.md
rm -f $(TARGETS)
rm -f $(LIBBUILDS)
rm -f ${TARGETS}
rm -f ${LIBBUILDS}
rm -f benchmarks
rm -rf ${EXECBUILDDIRS} ${PARSERBENCHDIR} ${TESTSUITEDIR}
rm -f ${BUILDROOT}/build/libHS*
@ -116,7 +118,11 @@ clean:
distclean: clean Setup
./Setup clean
rm -f Setup Setup.hi Setup.o
rm -rf dist
rm -rf dist-newstyle
rm -rf .stack-work
rm -f cabal.project.local
rm .ghc.environment.${ARCHITECTURE}-${OS}-${GHCVERSION}
rm -f `find ./ -name "*~"`
rm -f `find ./ -name "\#*\#"`

View File

@ -1,17 +1,14 @@
Name: implicit
Version: 0.2.1
Version: 0.3.0.0
Cabal-version: >= 1.10
Tested-with: GHC >= 8.2
Tested-with: GHC >= 8.6
Build-type: Simple
Synopsis: A Math-inspired programmatic 2&3D CAD system: CSG, bevels, and shells; gcode export..
Description: A math-inspired programmatic CAD library in haskell.
Build objects with constructive solid geometry, bevels,
shells and more in 2D & 3D. Then export to SVGs, STLs,
or produce gcode directly!
Synopsis: A math-inspired programmatic 2D & 3D CAD system.
Description: An OpenSCAD execution engine for generating models in STL and many other formats.
License: AGPL-3
License-file: LICENSE
Author: Julia Longtin <julial@turinglace.com>
Maintainer: Julia Longtin <julial@turinglace.com>
Author: Julia Longtin <julia.longtin@gmail.com>
Maintainer: Julia Longtin <julia.longtin@gmail.com>
Homepage: http://implicitcad.org/
Category: Graphics