blob: 33ca7368857649226ce84b22a35347e94fd976b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Copyright 2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit git-r3
DESCRIPTION="Shrimple TODO.TXT manager written in Hare"
HOMEPAGE="https://git.xn--80andq.net/autumn/bunnytask/about/"
EGIT_REPO_URI="https://git.xn--80andq.net/autumn/bunnytask/"
LICENSE=""
SLOT="0"
KEYWORDS=""
BDEPEND="
dev-lang/hare
"
src_install() {
emake PREFIX="${D}" install
}
|