forked from t0yv0/hdaemonize
-
Notifications
You must be signed in to change notification settings - Fork 6
/
hdaemonize.cabal
27 lines (25 loc) · 1.06 KB
/
hdaemonize.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
Name: hdaemonize
Version: 0.4.5.0
Cabal-Version: >= 1.6
License: BSD3
License-file: LICENSE
Author: Anton Tayanovskyy, Fred Ross
Maintainer: Fred Ross <madhadron at gmail dot com>
Homepage: http://github.com/madhadron/hdaemonize
Category: System
Synopsis: Library to handle the details of writing daemons for UNIX
Description: Provides two functions that help writing better UNIX daemons,
daemonize and serviced: daemonize does what a daemon should do
(forking and closing descriptors), while serviced does that and
more (syslog interface, PID file writing, start-stop-restart
command line handling, dropping privileges).
Build-Type: Simple
Extra-Source-Files: README
Library
Build-Depends: base >= 4 && < 5, unix, hsyslog, extensible-exceptions, filepath, mtl
Exposed-modules: System.Posix.Daemonize
Extensions: CPP
if impl(ghc > 6.12)
Ghc-Options: -Wall -fno-warn-unused-do-bind -fno-warn-type-defaults -fno-warn-name-shadowing
else
Ghc-Options: -Wall -fno-warn-type-defaults -fno-warn-name-shadowing