mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-09 23:23:00 -04:00
28 lines
631 B
Bash
28 lines
631 B
Bash
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DESCRIPTION="grow bonsai trees in your terminal"
|
|
HOMEPAGE="https://gitlab.com/jallbrit/cbonsai"
|
|
SRC_URI="https://gitlab.com/jallbrit/cbonsai/-/archive/v${PV}/cbonsai-v${PV}.tar.bz2 -> ${P}.tar.bz2"
|
|
S="${WORKDIR}/${PN}-v${PV}"
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
RDEPEND="sys-libs/ncurses"
|
|
DEPEND="${RDEPEND}"
|
|
BDEPEND="
|
|
app-text/scdoc
|
|
virtual/pkgconfig
|
|
"
|
|
|
|
PATCHES=( "${FILESDIR}/${PN}-respect-variables-1.4.2.patch" )
|
|
|
|
src_install() {
|
|
PREFIX="${EPREFIX}/usr" DESTDIR="${D}" emake install
|
|
dodoc README.md
|
|
}
|