File: filepath.cabal

package info (click to toggle)
ghc 8.0.1-17
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 55,080 kB
  • ctags: 9,332
  • sloc: haskell: 363,120; ansic: 54,900; sh: 4,782; makefile: 974; perl: 542; asm: 315; python: 306; xml: 154; lisp: 7
file content (67 lines) | stat: -rw-r--r-- 2,189 bytes parent folder | download
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
name:           filepath
version:        1.4.1.0
-- NOTE: Don't forget to update ./changelog.md
license:        BSD3
license-file:   LICENSE
author:         Neil Mitchell <ndmitchell@gmail.com>
maintainer:     Neil Mitchell <ndmitchell@gmail.com>
copyright:      Neil Mitchell 2005-2015
bug-reports:    https://github.com/haskell/filepath/issues
homepage:       https://github.com/haskell/filepath#readme
category:       System
build-type:     Simple
synopsis:       Library for manipulating FilePaths in a cross platform way.
cabal-version:  >=1.10
tested-with:    GHC==7.10.1, GHC==7.8.4, GHC==7.6.3, GHC==7.4.2, GHC==7.2.2
description:
    This package provides functionality for manipulating @FilePath@ values, and is shipped with both <https://www.haskell.org/ghc/ GHC> and the <https://www.haskell.org/platform/ Haskell Platform>. It provides three modules:
    .
    * "System.FilePath.Posix" manipulates POSIX\/Linux style @FilePath@ values (with @\/@ as the path separator).
    .
    * "System.FilePath.Windows" manipulates Windows style @FilePath@ values (with either @\\@ or @\/@ as the path separator, and deals with drives).
    .
    * "System.FilePath" is an alias for the module appropriate to your platform.
    .
    All three modules provide the same API, and the same documentation (calling out differences in the different variants).

extra-source-files:
    System/FilePath/Internal.hs
extra-doc-files:
    README.md
    changelog.md

source-repository head
    type:     git
    location: https://github.com/haskell/filepath.git

library
    default-language: Haskell98
    other-extensions:
        CPP
        PatternGuards
    if impl(GHC >= 7.2)
        other-extensions: Safe

    exposed-modules:
        System.FilePath
        System.FilePath.Posix
        System.FilePath.Windows

    build-depends:
        base >= 4 && < 4.10

    ghc-options: -Wall

test-suite filepath-tests
    type: exitcode-stdio-1.0
    default-language: Haskell98
    main-is: Test.hs
    ghc-options: -main-is Test
    hs-source-dirs: tests
    other-modules:
        TestGen
        TestUtil
    build-depends:
        filepath,
        base,
        QuickCheck >= 2.7 && < 2.9