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