File: hinotify.cabal

package info (click to toggle)
haskell-hinotify 0.3.2-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 144 kB
  • sloc: haskell: 271; sh: 25; makefile: 6
file content (38 lines) | stat: -rw-r--r-- 1,055 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name:               hinotify
version:            0.3.2
build-type:         Simple
synopsis:           Haskell binding to INotify
description:
    .
    This library provides a wrapper to the Linux Kernel's inotify feature,
    allowing applications to subscribe to notifications when a file is
    accessed or modified.
    .
category:           System
homepage:           http://code.haskell.org/hinotify/README.html
license:            BSD3
license-file:       LICENSE
author:             Lennart Kolmodin
maintainer:         Lennart Kolmodin <kolmodin@gmail.com>
extra-source-files: README
cabal-version:      >= 1.2

flag split-base
    description: Choose the new smaller, split-up base package.

library
    build-depends:  unix
    if flag(split-base)
        build-depends:  base >= 3 && < 5, containers, directory
    else
        build-depends:  base < 3
    extensions:     ForeignFunctionInterface

    exposed-modules:
        System.INotify
    other-modules:
        System.INotify.Masks

    ghc-options:    -Wall

    hs-source-dirs: src