29 lines
566 B
Bash
29 lines
566 B
Bash
# Copyright 2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
EGIT_REPO_URI="https://bis64wqhh3louusbd45iyj76kmn4rzw5ysawyan5bkxwyzihj67c5lid.onion/anon/bsleep.git"
|
|
inherit git-r3-tor savedconfig
|
|
|
|
DESCRIPTION="Banner SLEEP; resettable tui dead-man's-switch."
|
|
|
|
LICENSE="BSD-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 x86"
|
|
|
|
BDEPEND="sys-devel/gcc dev-build/make sys-libs/ncurses"
|
|
RDEPEND="sys-libs/ncurses"
|
|
|
|
src_configure() {
|
|
default
|
|
|
|
restore_config const/config.h
|
|
}
|
|
|
|
src_install() {
|
|
dobin bsleep
|
|
|
|
save_config const/config.h
|
|
}
|