blob: 52fd0719a60b1e879ec05191026abbd0d44ae0d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# 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.patch" )
src_compile() {
emake cbonsai
emake cbonsai.1
}
src_install() {
PREFIX="${EPREFIX}/usr" DESTDIR="${D}" emake install
dodoc README.md
}
|