contrib/monit/Pkgfile

25 lines
591 B
Plaintext
Raw Normal View History

2007-12-10 21:29:47 +01:00
# Description: Utility for monitoring daemons running on a Unix system
2018-01-10 13:50:39 +01:00
# URL: http://www.tildeslash.com/monit/
# Maintainer: Juergen Daubert, jue at crux dot nu
# Depends on: openssl
2007-12-10 21:29:47 +01:00
name=monit
2019-03-08 12:49:06 +01:00
version=5.25.3
2009-04-23 10:23:57 +02:00
release=1
2010-02-18 16:09:29 +01:00
source=(http://mmonit.com/$name/dist/$name-$version.tar.gz \
2007-12-10 21:29:47 +01:00
monitd)
build() {
cd $name-$version
2011-03-31 09:28:15 +02:00
2007-12-10 21:29:47 +01:00
./configure --prefix=/usr \
2013-06-25 10:58:23 +02:00
--sysconfdir=/etc \
--without-pam
2011-03-31 09:28:15 +02:00
2007-12-10 21:29:47 +01:00
make
make DESTDIR=$PKG install
2011-03-31 09:28:15 +02:00
install -D -m 0755 $SRC/monitd $PKG/etc/rc.d/monitd
install -D -m 0700 $SRC/$name-$version/monitrc $PKG/etc/monitrc
2007-12-10 21:29:47 +01:00
}