gentoo/app-doc/eclass-manpages/eclass-manpages-99999999.ebuild
Michael Mair-Keimberger 5b8478a9ff
app-doc/eclass-manpages: update HOMEPAGE, update remote-id
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
2023-03-09 09:35:10 +02:00

33 lines
717 B
Bash

# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit git-r3
DESCRIPTION="Collection of Gentoo eclass manpages"
HOMEPAGE="https://github.com/projg2/eclass-to-manpage"
EGIT_REPO_URI="https://anongit.gentoo.org/git/repo/gentoo.git
https://github.com/gentoo/gentoo.git"
LICENSE="GPL-2"
SLOT="0"
BDEPEND="sys-apps/gawk"
src_unpack() {
git-r3_fetch
git-r3_fetch "https://github.com/projg2/eclass-to-manpage.git"
git-r3_checkout "" "" "" eclass
git-r3_checkout "https://github.com/projg2/eclass-to-manpage.git"
}
src_compile() {
emake ECLASSDIR=eclass
}
src_install() {
emake install ECLASSDIR=eclass DESTDIR="${D}" PREFIX="${EPREFIX}/usr"
}