blob: 3ba33eef119680d27165a663b46124b8c15866e5 (
plain)
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
|
# This file is part of the OpenADK project. OpenADK is copyrighted
# material, please see the LICENCE file in the top-level directory.
include ${TOPDIR}/rules.mk
PKG_NAME:= monit
PKG_VERSION:= 5.2.1
PKG_RELEASE:= 1
PKG_MD5SUM:= 19ee6247b7528947d151720767bcf9d3
PKG_DESCR:= An utility for system services monitoring
PKG_SECTION:= admin
PKG_DEPENDS:= libpthread libopenssl
PKG_BUILDDEP:= openssl
PKG_URL:= http://mmonit.com/monit/
PKG_SITES:= http://www.tildeslash.com/monit/dist/
include ${TOPDIR}/mk/package.mk
$(eval $(call PKG_template,MONIT,monit,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
CONFIGURE_ARGS+= --with-ssl --with-ssl-dir="${STAGING_TARGET_DIR}/usr"
monit-install:
${INSTALL_DIR} ${IDIR_MONIT}/etc
install -m0600 ${WRKBUILD}/monitrc ${IDIR_MONIT}/etc
${INSTALL_DIR} ${IDIR_MONIT}/usr/sbin
${INSTALL_BIN} ${WRKBUILD}/monit ${IDIR_MONIT}/usr/sbin
include ${TOPDIR}/mk/pkg-bottom.mk
|