2 # Copyright (C) 2006 OpenWrt.org
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
8 include $(TOPDIR
)/rules.mk
14 PKG_SOURCE
:=$(PKG_NAME
)-$(PKG_VERSION
).
tar.gz
15 PKG_SOURCE_URL
:=http
://0pointer.de
/lennart
/projects
/libdaemon
/
16 PKG_MD5SUM
:=509dc27107c21bcd9fbf2f95f5669563
18 include $(INCLUDE_DIR
)/package.mk
20 define Package
/libdaemon
23 TITLE
:=A lightweight C library that eases the writing of UNIX daemons
24 URL
:=http
://0pointer.de
/lennart
/projects
/libdaemon
/
27 define Package
/libdaemon
/description
28 libdaemon is a lightweight C library that eases the writing of UNIX daemons.
29 It consists of the following parts
:
30 - A wrapper around fork
() which does the correct daemonization procedure of a process
31 - A wrapper around syslog
() for simpler and compatible log output to Syslog or STDERR
32 - An API for writing PID files
33 - An API for serializing UNIX signals into a pipe for usage with select
() or poll
()
34 - An API for running subprocesses with STDOUT and STDERR redirected to syslog
36 APIs like these are used in most daemon software available. It is not that
37 simple to
get it done right and code duplication is not a goal.
40 define Build
/Configure
41 $(call Build
/Configure
/Default
, \
48 TARGET_CFLAGS
+= $(FPIC
)
51 $(MAKE
) -C
$(PKG_BUILD_DIR
) \
52 DESTDIR
="$(PKG_INSTALL_DIR)" \
56 define Build
/InstallDev
57 mkdir
-p
$(1)/usr
/include
58 $(CP
) $(PKG_INSTALL_DIR
)/usr
/include/libdaemon
$(1)/usr
/include/
60 $(CP
) $(PKG_INSTALL_DIR
)/usr
/lib
/libdaemon.a
$(1)/usr
/lib
/
61 $(CP
) $(PKG_INSTALL_DIR
)/usr
/lib
/libdaemon.so
* $(1)/usr
/lib
/
62 mkdir
-p
$(1)/usr
/lib
/pkgconfig
63 $(CP
) $(PKG_INSTALL_DIR
)/usr
/lib
/pkgconfig
/libdaemon.
pc $(1)/usr
/lib
/pkgconfig
/
66 define Package
/libdaemon
/install
67 $(INSTALL_DIR
) $(1)/usr
/lib
68 $(CP
) $(PKG_INSTALL_DIR
)/usr
/lib
/libdaemon.so.
* $(1)/usr
/lib
/
71 $(eval
$(call BuildPackage
,libdaemon
))