1
0
Fork 0
httpprocprobed/contrib/archlinux/PKGBUILD

22 lines
589 B
Bash

# Maintainer: Alexander "Arav" Andreev <me@arav.top>
pkgname=httpprocwatchd
pkgver=1.3.2
pkgrel=1
pkgdesc="HTTPProcWatchD hands out an HTTP endpoint to see status of watched processes."
arch=('i686' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64')
url="https://git.arav.top/Arav/httpprocwatchd"
license=('MIT')
source=('git+https://git.arav.top/Arav/httpprocwatchd.git')
md5sums=('SKIP')
makedepends=('go')
build() {
cd "$srcdir/$pkgname"
make DESTDIR="$pkgdir/"
}
package() {
cd "$srcdir/$pkgname"
make DESTDIR="$pkgdir/" install
make DESTDIR="$pkgdir/" install-service
}