File: system-filepath.cabal

package info (click to toggle)
haskell-system-filepath 0.4.6-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 140 kB
  • sloc: haskell: 1,080; sh: 60; makefile: 2
file content (56 lines) | stat: -rw-r--r-- 1,307 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
name: system-filepath
version: 0.4.6
synopsis: High-level, byte-based file and directory path manipulations
license: MIT
license-file: license.txt
author: John Millikin <jmillikin@gmail.com>
maintainer: John Millikin <jmillikin@gmail.com>
copyright: John Millikin 2010-2012
build-type: Simple
cabal-version: >= 1.6
category: System
stability: experimental
homepage: https://john-millikin.com/software/haskell-filesystem/
bug-reports: mailto:jmillikin@gmail.com

extra-source-files:
  scripts/common.bash
  scripts/run-benchmarks
  scripts/run-coverage
  scripts/run-tests
  --
  tests/system-filepath-tests.cabal
  tests/Tests.hs

source-repository head
  type: bzr
  location: https://john-millikin.com/branches/system-filepath/0.4/

source-repository this
  type: bzr
  location: https://john-millikin.com/branches/system-filepath/0.4/
  tag: system-filepath_0.4.6

library
  ghc-options: -Wall -O2
  hs-source-dirs: lib

  build-depends:
      base >= 3 && < 5
    , bytestring >= 0.9 && < 0.10
    , deepseq >= 1.1 && < 1.4
    , text >= 0.7.1 && < 0.12

  if os(windows)
    cpp-options: -DCABAL_OS_WINDOWS

  if os(darwin)
    cpp-options: -DCABAL_OS_DARWIN

  exposed-modules:
    Filesystem.Path
    Filesystem.Path.CurrentOS
    Filesystem.Path.Rules

  other-modules:
    Filesystem.Path.Internal