-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathepoll.cabal
33 lines (31 loc) · 1.11 KB
/
epoll.cabal
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
name: epoll
version: 0.2.3
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: [email protected]
copyright: Copyright (c) 2009 Toralf Wittner
homepage: http://github.com/twittner/epoll/
stability: experimental
tested-With: GHC == 6.12.1
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,
FlexibleInstances
build-depends: base >= 3 && < 5, unix
hs-source-dirs: src