git-restrict-9999.ebuild (484B)
1 # Copyright 1999-2025 Gentoo Authors 2 # Distributed under the terms of the GNU General Public License v2 3 4 EAPI=8 5 6 inherit git-r3 7 8 DESCRIPTION="Simple utility for git repository permission management" 9 HOMEPAGE="https://github.com/parazyd/git-restrict" 10 EGIT_REPO_URI="https://git.parazyd.org/git-restrict.git" 11 12 LICENSE="AGPL-3" 13 SLOT="0" 14 KEYWORDS="" 15 16 src_compile() { 17 emake all 18 } 19 20 src_install() { 21 emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install 22 dodoc README.md 23 dodoc -r contrib 24 }