packages feed

backstop-1.3.0.352: backstop.cabal

cabal-version: 2.4
name: backstop
version: 1.3.0.352
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

source-repository head
    type: git
    location: https://github.com/mdgabriel/backstop.git
    tag: 1.3.0.351

library
    exposed-modules:
        Backstop
        Environment
        License
        Manual
        Utils
    hs-source-dirs: src
    default-language: Haskell2010
    build-depends:
        base >=4.12.0.0 && <4.13,
        directory >=1.3.3.0 && <1.4,
        filepath >=1.4.2.1 && <1.5,
        mtl >=2.2.2 && <2.3,
        process >=1.6.5.0 && <1.7,
        unix >=2.7.2.2 && <2.8

executable backstop
    main-is: Main.hs
    hs-source-dirs: src
    other-modules:
        Backstop
        Environment
        License
        Manual
        Utils
    default-language: Haskell2010
    build-depends:
        base >=4.12.0.0 && <4.13,
        directory >=1.3.3.0 && <1.4,
        filepath >=1.4.2.1 && <1.5,
        mtl >=2.2.2 && <2.3,
        process >=1.6.5.0 && <1.7,
        unix >=2.7.2.2 && <2.8

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