35 lines
924 B
Bash
35 lines
924 B
Bash
# Template file for 'bird_exporter'
|
|
pkgname=bird_exporter
|
|
version=1.2.6
|
|
revision=1
|
|
build_style=go
|
|
go_import_path="github.com/czerwonk/bird_exporter"
|
|
hostmakedepends="$(vopt_if man pandoc)"
|
|
depends="bird"
|
|
short_desc="Metric exporter for BIRD routing daemon to use with Prometheus"
|
|
maintainer="Leah Neukirchen <leah@vuxu.org>"
|
|
license="MIT"
|
|
homepage="https://github.com/czerwonk/bird_exporter"
|
|
distfiles="https://github.com/czerwonk/bird_exporter/archive/${version}.tar.gz"
|
|
checksum=ff4c5363f396265115a01ec87ceb949a7098d1e533f10b226320101cafa0651a
|
|
|
|
build_options="man"
|
|
desc_option_man="Use pandoc for manpages"
|
|
|
|
case "$XBPS_MACHINE" in
|
|
x86_64*|i686|ppc64le*) build_options_default="man" ;;
|
|
esac
|
|
|
|
post_build() {
|
|
if [ "$build_option_man" ]; then
|
|
pandoc -s -t man bird_exporter.1.md -o bird_exporter.1
|
|
fi
|
|
}
|
|
post_install() {
|
|
if [ "$build_option_man" ]; then
|
|
vman bird_exporter.1
|
|
fi
|
|
vsv bird_exporter
|
|
vlicense LICENSE
|
|
}
|