pentoo-overlay/dev-vcs/gitleaks/gitleaks-8.18.0.ebuild
2023-09-12 10:14:07 +08:00

27 lines
598 B
Bash

# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
EGO_PN="github.com/zricethezav/gitleaks"
inherit go-module
DESCRIPTION="Audit git repos for secrets"
HOMEPAGE="https://github.com/zricethezav/gitleaks"
SRC_URI="https://github.com/zricethezav/gitleaks/archive/v${PV}.tar.gz -> ${P}.tar.gz
https://dev.pentoo.ch/~blshkv/distfiles/${P}-vendor.tar.xz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 ~arm64 ~x86"
src_compile() {
einfo "COMPILE ==========="
ego build
}
src_install() {
einfo "INSTALL ==========="
dobin ${PN}
# default
}