diff --git a/dev-vcs/git-secret/Manifest b/dev-vcs/git-secret/Manifest new file mode 100644 index 0000000..f19452e --- /dev/null +++ b/dev-vcs/git-secret/Manifest @@ -0,0 +1 @@ +DIST git-secret-0.5.0.tar.gz 854497 BLAKE2B 842891086338f5f64c038da95eec2b2e40b4036d941e03c9170705410d57912cadbed71e8b4b89f3af4a781555ed07cf7b43b44879a02579640dcefaac3ea55c SHA512 c685ee4d7b7d247c37805fc3a16c431eff7f6740899d65f9178514b99e84ff83cb59330e6fb73da627f00bb60d0cca76da8b31004fcc3926dcee3fed15d65b85 diff --git a/dev-vcs/git-secret/git-secret-0.5.0.ebuild b/dev-vcs/git-secret/git-secret-0.5.0.ebuild new file mode 100644 index 0000000..ba450f8 --- /dev/null +++ b/dev-vcs/git-secret/git-secret-0.5.0.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="A bash-tool to store your private data inside a git repository" +HOMEPAGE="https://git-secret.io https://github.com/sobolevn/git-secret" +SRC_URI="https://github.com/sobolevn/git-secret/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND=" + app-crypt/gnupg + app-shells/bash + dev-vcs/git + sys-apps/gawk + sys-apps/coreutils +" +DEPEND="${RDEPEND}" + +src_install() { + emake install PREFIX="${ED}"/usr +}