forked from haskell/directory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdirectory.cabal
82 lines (73 loc) · 1.98 KB
/
directory.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
82
name: directory
version: 1.2.3.0
-- NOTE: Don't forget to update ./changelog.md
license: BSD3
license-file: LICENSE
maintainer: [email protected]
bug-reports: https://github.com/haskell/directory/issues
synopsis: Platform-agnostic library for filesystem operations
description:
This library provides a basic set of operations for manipulating files and
directories in a portable way.
category: System
build-type: Configure
cabal-version: >= 1.10
tested-with: GHC>=7.4.1
extra-tmp-files:
autom4te.cache
config.log
config.status
include/HsDirectoryConfig.h
extra-source-files:
changelog.md
README.md
configure
configure.ac
directory.buildinfo
include/HsDirectoryConfig.h.in
tests/*.hs
tests/util.inl
source-repository head
type: git
location: https://github.com/haskell/directory
Library
default-language: Haskell2010
other-extensions:
CPP
NondecreasingIndentation
Trustworthy
exposed-modules:
System.Directory
other-modules:
System.Directory.Internal
System.Directory.Internal.C_utimensat
System.Directory.Internal.Posix
System.Directory.Internal.Windows
c-sources:
cbits/directory.c
include-dirs: include
includes:
HsDirectory.h
install-includes:
HsDirectory.h
build-depends:
base >= 4.5 && < 4.9,
time >= 1.4 && < 1.6,
filepath >= 1.3 && < 1.5
if os(windows)
build-depends: Win32 >= 2.2.2 && < 2.4
else
build-depends: unix >= 2.5.1 && < 2.8
ghc-options: -Wall
test-suite test
default-language: Haskell2010
other-extensions: BangPatterns, CPP
ghc-options: -Wall
hs-source-dirs: tests
main-is: Main.hs
type: exitcode-stdio-1.0
build-depends: base, directory, filepath, time
if os(windows)
build-depends: Win32
else
build-depends: unix