guru/app-misc/tinyfetch/tinyfetch-9999.ebuild
kernaltrap8 a5349b6848
app-misc/tinyfetch: remove git branch swap for pci USE flag
Signed-off-by: kernaltrap8 <kernaltrap@gmail.com>
2024-06-25 20:14:53 -05:00

28 lines
458 B
Bash

# Copyright 2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit meson
DESCRIPTION="fetch program written in pure C"
HOMEPAGE="https://github.com/kernaltrap8/tinyfetch"
if [[ ${PV} == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/kernaltrap8/tinyfetch"
S="${WORKDIR}/${PN}-9999"
fi
LICENSE="GPL-3"
SLOT="0"
IUSE="+pci"
RDEPEND="
pci? (
sys-apps/pciutils
)
"
DEPEND="${RDEPEND}"