mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-11 08:03:16 -04:00
no symlinks in the repo please Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Andrew Ammerlaan <andrewammerlaan@gentoo.org>
32 lines
671 B
Bash
32 lines
671 B
Bash
# Copyright 1999-2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DESCRIPTION="cmatrix clone with 32-bit color and Unicode support"
|
|
HOMEPAGE="https://github.com/st3w/neo"
|
|
|
|
if [ "$PV" = 9999 ]; then
|
|
inherit autotools git-r3
|
|
EGIT_REPO_URI="https://github.com/st3w/neo/"
|
|
else
|
|
SRC_URI="https://github.com/st3w/neo/releases/download/v${PV}/${P}.tar.gz"
|
|
KEYWORDS="~amd64"
|
|
fi
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
IUSE=""
|
|
|
|
DEPEND="sys-libs/ncurses"
|
|
RDEPEND="${DEPEND}"
|
|
[ "$PV" = 9999 ] && BDEPEND="
|
|
sys-devel/autoconf
|
|
sys-devel/autoconf-archive
|
|
"
|
|
|
|
src_prepare() {
|
|
default
|
|
[ -f ./configure ] || eautoreconf || die 'autoreconf failed'
|
|
}
|