summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 4f30de20e6dcba0564853f8fab60f978a321950c (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
# Maintainer: Andreas Nüßlein <nutz@noova.de>

pkgname=check_pidfile
pkgver=1
pkgrel=0
pkgdesc="check pidfile"
arch=('i686' 'x86_64')
depends=('monitoring-plugins')
url="https://github.com/hollow/check_pidfile.git"
source=("git+https://github.com/hollow/check_pidfile.git")
md5sums=('SKIP')

build() {
  cd "$pkgname"
  autoreconf -vi
  ./configure
  make
}

package() {
  cd "$pkgname"
  install -Dm4755 check_pidfile "$pkgdir/usr/lib/monitoring-plugins/check_pidfile"
}

# vim: ft=sh syn=sh