# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 DESCRIPTION="rpm workalike for Gentoo Linux" HOMEPAGE="https://github.com/fuzzyray/epm" SRC_URI="https://rodan.github.io/distfiles/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 arm arm64 x86" DEPEND="dev-lang/perl" RDEPEND="${DEPEND}" S="${WORKDIR}" src_compile() { pod2man epm > epm.1 || die "pod2man failed" } src_install() { dobin epm || die doman epm.1 }