name: system-filepath
version: 0.3.3
x-revision: 1
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-2011
build-type: Simple
cabal-version: >= 1.6
category: System
stability: experimental
homepage: https://john-millikin.com/software/hs-filepath/
bug-reports: mailto:jmillikin@gmail.com

extra-source-files:
  tests/system-filepath-tests.cabal
  tests/Tests.hs

source-repository head
  type: bzr
  location: https://john-millikin.com/software/hs-filepath/

source-repository this
  type: bzr
  location: https://john-millikin.com/branches/hs-filepath/0.3/
  tag: system-filepath_0.3.3

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

  build-depends:
      base >= 3 && < 4.10
    , bytestring >= 0.9 && < 0.10
    , text >= 0.3 && < 0.12

  if os(windows)
    cpp-options: -DCABAL_OS_WINDOWS

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

  other-modules:
    Filesystem.Path.Internal