-
Notifications
You must be signed in to change notification settings - Fork 1
/
pgm.cabal
31 lines (27 loc) · 860 Bytes
/
pgm.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
name: pgm
version: 0.1.2
synopsis: Pure Haskell implementation of PGM image format
description: Reads and writes 8 and 16 bit PGM images, loading them into Haskell as arrays.
category: Graphics
license: GPL
license-file: LICENSE
author: Frederick Ross
maintainer: [email protected]
homepage: http://github.com/madhadron/haskell-pgm
build-type: Simple
cabal-version: >= 1.6
extra-source-files: README
library
exposed-modules:
Graphics.Pgm
build-depends:
array >= 0 && < 1,
base >= 3 && < 5,
bytestring >= 0 && < 1,
parsec >= 3 && < 4
ghc-options: -Wall
if impl(ghc >= 6.8)
ghc-options: -fwarn-tabs
source-repository head
type: git
location: git://github.com/madhadron/haskell-pgm.git