32 lines
917 B
Bash
32 lines
917 B
Bash
# Template file for 'immortal'
|
|
pkgname=immortal
|
|
version=0.24.0
|
|
revision=1
|
|
build_style=go
|
|
go_import_path=github.com/immortal/immortal
|
|
go_package="${go_import_path}/cmd/immortal ${go_import_path}/cmd/immortalctl
|
|
${go_import_path}/cmd/immortaldir"
|
|
go_ldflags="-X main.Version=v${version}"
|
|
hostmakedepends="git"
|
|
short_desc="*nix cross-platform (OS agnostic) supervisor"
|
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
|
license="BSD-3-Clause"
|
|
homepage="https://github.com/immortal/immortal"
|
|
#changelog="https://raw.githubusercontent.com/immortal/immortal/master/CHANGELOG.md"
|
|
distfiles="https://github.com/immortal/immortal/archive/${version}.tar.gz"
|
|
checksum=a01c64ef754f29d2ebf4b30c7e0853f6fcc499e3f846c5b6edfb235c756f4608
|
|
|
|
do_check() {
|
|
go test -v
|
|
}
|
|
|
|
post_install() {
|
|
for f in man/* ; do
|
|
vman $f
|
|
done
|
|
|
|
vmkdir usr/share/${pkgname}/example
|
|
vcopy "${wrksrc}/example/*" usr/share/${pkgname}/example
|
|
|
|
vlicense LICENSE
|
|
}
|