gentoo-ebuilds/app-admin/cronlocker/cronlocker-0.5.0.ebuild
William Hubbs d5e1d02b02
app-admin/cronlocker: fix homepage
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: William Hubbs <williamh@gentoo.org>
2021-12-19 14:37:56 -06:00

22 lines
523 B
Bash

# Copyright 2019-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit go-module
DESCRIPTION="synchronize a cron job across multiple hosts using the consul lock feature"
HOMEPAGE="https://github.com/viafintech/cronlocker"
SRC_URI="https://github.com/Barzahlen/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT MPL-2.0"
SLOT="0"
KEYWORDS="~amd64"
src_compile() {
go build -o cronlocker . || die
}
src_install() {
dobin cronlocker
dodoc *.md package/changelog
}