speedie-overlay/app-misc/fontctrl/fontctrl-9999.ebuild

35 lines
640 B
Bash
Raw Permalink Normal View History

2022-11-20 14:59:12 +01:00
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="Minimal font manager for GNU/Linux written in POSIX compliant shell."
2023-05-08 23:35:34 +02:00
HOMEPAGE="https://speedie.site/fontctrl"
2022-11-20 14:59:12 +01:00
LICENSE="GPL-3+"
SLOT="0"
if [[ ${PV} == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://codeberg.org/speedie/${PN}"
2022-12-12 22:18:40 +01:00
else
2022-12-28 18:16:27 +01:00
SRC_URI="https://codeberg.org/speedie/${PN}/releases/download/${PV}/${P}.tar.gz"
KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
2022-11-20 14:59:12 +01:00
fi
2022-12-12 22:18:40 +01:00
IUSE="${USE}"
2022-11-20 14:59:12 +01:00
DEPEND=""
src_prepare() {
default
}
src_compile() {
:
}
src_install() {
newbin "${WORKDIR}/${P}/${PN}" ${PN}
}