-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbackstop.cabal
81 lines (77 loc) · 2.05 KB
/
backstop.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
cabal-version: 2.4
name: backstop
version: 1.3.0.355
license: GPL-3.0-only
license-file: LICENSE
copyright: All rights reserved (c)1999-2019.
maintainer: marcus@gabriel.name
author: Marcus D. Gabriel
homepage: https://github.com/mdgabriel/backstop.git
bug-reports: https://github.com/mdgabriel/backstop/issues
synopsis: Backstop a target directory by source directories
description:
The backstop command is a UNIX, Linux, and *BSD tool. Intuitively,
backstop fills in the missing objects or holes that exist in the
target directory relative to the source directories thereby
creating a merged view of the target and source directories.
De-backstop undoes this. See "backstop -m" for a manual page
or the [homepage](https://github.com/mdgabriel/backstop.git)
for more information.
category: program, development, library
extra-source-files:
CHANGELOG.md
README.md
tested-with:
GHC==8.4.1,
GHC==8.6.5
source-repository head
type: git
location: https://github.com/mdgabriel/backstop.git
tag: 1.3.0.355
library
exposed-modules:
Backstop
Environment
License
Manual
Utils
hs-source-dirs: src
default-language: Haskell2010
build-depends:
base -any,
directory -any,
filepath -any,
mtl -any,
process -any,
unix -any
executable backstop
main-is: Main.hs
hs-source-dirs: src
other-modules:
Backstop
Environment
License
Manual
Utils
default-language: Haskell2010
build-depends:
base -any,
directory -any,
filepath -any,
mtl -any,
process -any,
unix -any
test-suite run-tests
type: exitcode-stdio-1.0
main-is: RunTests.hs
hs-source-dirs: src tests
other-modules:
Utils
default-language: Haskell2010
build-depends:
base ==4.*,
HUnit >=1.6.0.0 && <1.7,
QuickCheck >=2.13.2 && <2.14,
filepath >=1.4.2.1 && <1.5,
process >=1.6.5.0 && <1.7,
unix >=2.7.2.2 && <2.8