Chalkboard is a Haskell hosted Domain Specific Language (DSL) for image generation and processing. The basic structure is a chalk board, a two-dimensional canvas of values, typically colors. Chalkboard provides the usual image processing functions (masking, overlaying, function mapping, cropping, warping, rotating) as well as a few more unusual ones. Images can be imported into Chalkboard, as first-class color chalk boards. Chalkboard also provides combinators for drawing shapes on directly on boards. The system is based loosely on PAN, but the principal image type, a Board, is abstract.
13 lines
349 B
Makefile
13 lines
349 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2009/09/22 13:00:23 phonohawk Exp $
|
|
#
|
|
|
|
DISTNAME= chalkboard-0.2
|
|
CATEGORIES= graphics
|
|
|
|
MAINTAINER= pho@cielonegro.org
|
|
HOMEPAGE= http://ittc.ku.edu/~andygill/chalkboard.php
|
|
COMMENT= Combinators for building and processing 2D images
|
|
LICENSE= modified-bsd
|
|
|
|
.include "../../wip/mk/haskell.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|