packages feed

photoname-3.3: photoname.cabal

name:                photoname
cabal-version:       >= 1.8
version:             3.3
build-type:          Simple
license:             ISC
license-file:        LICENSE
copyright:           2007-2016 Dino Morelli
author:              Dino Morelli 
maintainer:          Dino Morelli <dino@ui3.info>
stability:           stable
homepage:            http://hub.darcs.net/dino/photoname
synopsis:            Rename photo image files based on EXIF shoot date
description:         
   Command-line utility for renaming/moving photo image files based on 
   EXIF tags.
category:            Application, Console
tested-with:         GHC >= 8.0.1

extra-source-files:  changelog.md
                     doc/dev/notes
                     doc/hcar-photoname.tex
                     .gitignore
                     README.md
                     stack.yaml
                     testsuite/resources/*.jpg
                     TODO.md
                     util/install.hs
                     util/resources/test.conf

source-repository    head
   type:             darcs
   location:         http://hub.darcs.net/dino/photoname

executable           photoname
   main-is:          photoname.hs
   build-depends:      base >=4.5 && < 5.0
                     , directory
                     , exif
                     , filepath
                     , mtl
                     , old-locale
                     , parsec
                     , time
                     , unix
   other-modules:    Paths_photoname
                     Photoname.Common
                     Photoname.DateFormat
                     Photoname.Date
                     Photoname.Exif
                     Photoname.Opts
                     Photoname.SerialFormat
   hs-source-dirs:   src
   ghc-options:      -Wall

test-suite           photoname-tests
   type:             exitcode-stdio-1.0
   main-is:          runtests.hs
   build-depends:      base >=4.5 && < 5.0
                     , directory
                     , exif
                     , filepath
                     , HUnit
                     , mtl
                     , old-locale
                     , parsec
                     , process
                     , regex-posix
                     , time
                     , unix
   other-modules:    TestHelp
                     TestLink
                     Util
   hs-source-dirs:   src testsuite
   ghc-options:      -Wall