]> git.rkrishnan.org Git - hs-rsync.git/blob - hs-rsync.cabal
naive version of rsync
[hs-rsync.git] / hs-rsync.cabal
1 name:                hs-rsync
2 version:             0.1.0.0
3 synopsis:            An rsync implementation pure Haskell
4 description:         RSync in pure Haskell
5 homepage:            http://github.com/vu3rdd/hs-rsync#readme
6 license:             GPL-3
7 license-file:        LICENSE
8 author:              Ramakrishnan Muthukrishnan
9 maintainer:          ram@rkrishnan.org
10 copyright:           2015 Ramakrishnan Muthukrishnan
11 category:            Console
12 build-type:          Simple
13 -- extra-source-files:
14 cabal-version:       >=1.10
15
16 library
17   hs-source-dirs:      src
18   exposed-modules:     Lib
19   build-depends:       base >= 4.7 && < 5
20                      , bytestring
21                      , cryptohash
22   default-language:    Haskell2010
23
24 executable hs-rsync-exe
25   hs-source-dirs:      app
26   main-is:             Main.hs
27   ghc-options:         -threaded -rtsopts -with-rtsopts=-N
28   build-depends:       base
29                      , bytestring
30                      , hs-rsync
31   default-language:    Haskell2010
32
33 test-suite hs-rsync-test
34   type:                exitcode-stdio-1.0
35   hs-source-dirs:      test
36   main-is:             Spec.hs
37   build-depends:       base
38                      , hs-rsync
39   ghc-options:         -threaded -rtsopts -with-rtsopts=-N
40   default-language:    Haskell2010
41
42 source-repository head
43   type:     git
44   location: https://github.com/vu3rdd/hs-rsync