summaryrefslogtreecommitdiff
blob: e5372f766685c83f8e5d41036844b63ec2449689 (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
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

DESCRIPTION="Use Emacs as a paginator"
HOMEPAGE="https://eless.scripter.co/ https://github.com/kaushalmodi/eless/"
SRC_URI="https://github.com/kaushalmodi/${PN}/archive/v${PV}.tar.gz
			-> ${P}.tar.gz"

LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 ~x86"
RESTRICT="test"  # Tests have to be run manually

RDEPEND="
	>=app-editors/emacs-25.3:*
	app-shells/bash
	dev-lang/perl
"

src_compile() {
	:  # Nothing to compile
}

src_install() {
	dobin ${PN}
	dodoc ${PN}.org README.org
	doinfo docs/${PN}.info
}