blob: 4e7fe33a658a3b16fcb6b2bc7e1f9252854ebfd1 (
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
33
34
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit git-r3
DESCRIPTION="Functions to create windows on Xterm, aterm, urxvt... etc"
HOMEPAGE="https://github.com/metal3d/bashsimplecurses"
EGIT_REPO_URI="https://github.com/metal3d/${PN}.git"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="
media-libs/libcaca
sys-libs/ncurses
"
DEPEND="${RDEPEND}
"
DOCS="README.md AUTHORS"
src_install() {
insinto /usr/share/${PN}
doins simple_curses.sh
dodoc ${DOCS}
}
pkg_postinst() {
elog "See docs at: http://bashsimplecurses.readthedocs.org/en/latest/"
}
|