-- Initial touched.cabal generated by cabal init. For further -- documentation, see http://haskell.org/cabal/users-guide/ name: touched version: 0.2.0.1 synopsis: Library (and cli) to execute a procedure on file change. description: A small, IO-heavy library that monitors files for changes and runs either a system shell command or a Haskell `IO ()` action. license: MIT license-file: LICENSE author: Alex Crough maintainer: alex@crough.org copyright: Copyright (c) 2015 to Alex Crough stability: alpha category: System build-type: Simple cabal-version: >=1.10 source-repository head type: git location: git://github.com/crough/touched.git library exposed-modules: System.Touched, System.Touched.OnlyOne, System.Touched.Procedure build-depends: base >=4.7 && <4.9, directory, process, time hs-source-dirs: src default-language: Haskell2010 other-extensions: MultiWayIf executable touched main-is: Main.hs build-depends: base >=4.7 && <4.9, touched, cmdargs hs-source-dirs: touched-cli default-language: Haskell2010 other-extensions: DeriveDataTypeable, MultiWayIf