blob: 84d5d937b74bcce04b8c372fb79e526af2352cab (
plain)
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
|
name: redo
version: 0.2.0
synopsis: software build system, make replacement, implementation of djb's redo
description: redo builds a target file from source files using a "do" script. It also tracks when source files have changed and rebuilds target files as necessary.
homepage: https://github.com/jekor/redo
bug-reports: https://github.com/jekor/redo/issues
license: PublicDomain
license-file: LICENSE
author: Chris Forno (jekor)
maintainer: jekor@jekor.com
category: Distribution
build-type: Simple
cabal-version: >=1.8
tested-with: GHC == 7.6.2
source-repository head
type: git
location: git://github.com/jekor/redo.git
executable redo
main-is: redo.hs
build-depends: base >= 4 && < 5,
bytestring,
containers >= 0.5,
directory,
filepath,
process,
pureMD5
extensions: ScopedTypeVariables
ghc-options: -Wall -fno-warn-missing-signatures
|