src_prepare-overlay/sys-process/nq/nq-9999.ebuild
Alfred Wingate 1eb1269c72
sys-process/nq: VariableOrderWrong
Signed-off-by: Alfred Wingate <parona@protonmail.com>
2024-02-15 12:11:07 +02:00

25 lines
552 B
Bash

# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="Unix command line queue utility"
HOMEPAGE="https://github.com/leahneukirchen/nq"
if [[ ${PV} == *9999* ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/leahneukirchen/${PN}.git"
else
SRC_URI="https://github.com/leahneukirchen/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64"
fi
LICENSE="CC0-1.0"
SLOT="0"
RESTRICT="mirror"
src_install() {
emake DESTDIR="${D}" PREFIX="/usr" install
dodoc *.md
}