packages feed

epoll-0.2.2: epoll.cabal

name:               epoll
version:            0.2.2
synopsis:           epoll bindings
description:        Bindings to epoll, a Linux specific I/O
                    event notication facility (cf. man epoll(7)).
category:           System
license:            LGPL
license-file:       LICENSE
author:             Toralf Wittner
maintainer:         toralf.wittner@gmail.com
copyright:          Copyright (c) 2009 Toralf Wittner
homepage:           http://github.com/twittner/epoll/
stability:          experimental
tested-With:        GHC == 6.10.4
cabal-version:      >= 1.6.0
build-type:         Simple
extra-source-files: README, examples/*.hs

library
  exposed-modules:  System.Linux.Epoll,
                    System.Linux.Epoll.Base,
                    System.Linux.Epoll.Buffer,
                    System.Linux.Epoll.EventLoop
  other-modules:    Util,
                    BChan
  ghc-options:      -Wall -O2
  extensions:       CPP,
                    ForeignFunctionInterface,
                    TypeSynonymInstances
  build-depends:    base >= 3 && < 5, unix
  hs-source-dirs:   src