-
Notifications
You must be signed in to change notification settings - Fork 4
/
event.cabal
57 lines (49 loc) · 1.39 KB
/
event.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
name: event
version: 0.1
synopsis: Scalable event notification
description:
Scalable event notification for file handles, sockets, timers, etc.
license: BSD3
license-file: LICENSE
author: Bryan O'Sullivan <[email protected]>
Johan Tibell <[email protected]>
maintainer: Johan Tibell <[email protected]>
category: System
build-type: Configure
cabal-version: >= 1.6
extra-tmp-files:
config.log config.status autom4te.cache
include/EventConfig.h
extra-source-files:
README.md config.guess config.sub install-sh configure.ac configure
cbits/eventsupport.c include/EventConfig.h.in include/HsEvent.h
library
extensions: NoImplicitPrelude
exposed-modules:
System.Event
System.Event.Thread
other-modules:
System.Event.Array
System.Event.Clock
System.Event.Control
System.Event.EPoll
System.Event.IntMap
System.Event.Internal
System.Event.KQueue
System.Event.Manager
System.Event.PSQ
System.Event.Poll
System.Event.Unique
build-depends:
base >= 4 && < 5,
ghc-prim
ghc-prof-options: -auto-all
ghc-options: -Wall -fno-warn-unused-do-bind -funbox-strict-fields
if impl(ghc >= 6.8)
ghc-options: -fwarn-tabs
hs-source-dirs: src
include-dirs: include
install-includes: EventConfig.h
source-repository head
type: git
location: git://github.com/tibbe/event.git