aboutsummaryrefslogtreecommitdiff
blob: aeeb16f9ff3b53b52eac2fb94ea831b1a937cd23 (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

DESCRIPTION="A full-featured BDD unit testing framework for all POSIX shells"
HOMEPAGE="https://shellspec.info/"

if [[ "${PV}" = 9999 ]]; then
	inherit git-r3
	EGIT_REPO_URI="https://github.com/shellspec/shellspec.git"
else
	SRC_URI="https://github.com/shellspec/shellspec/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
	KEYWORDS="~amd64"
fi

LICENSE="MIT-with-advertising"
SLOT="0"
IUSE="doc examples test"
RESTRICT="binchecks strip !test? ( test )"

DEPEND="
	|| (
		>=app-shells/bash-2.03
		>=app-shells/dash-0.5.4
		app-shells/ksh
		app-shells/loksh
		>=app-shells/mksh-28r
		>=app-shells/posh-0.3.14
		>=app-shells/yash-2.29
		>=app-shells/zsh-3.1.9
		>=sys-apps/busybox-1.20.0
	)
"

BDEPEND="test? ( ${DEPEND} )"
RDEPEND="${DEPEND}"

DOCS=(
	CHANGELOG.md
	CONTRIBUTING.md
	README.md
)

src_prepare() {
	default
	sed -i "s/LICENSE//g" Makefile || die
}

src_compile() { :; }

src_test() {
	emake test
}

src_install() {
	einstalldocs

	use doc && dodoc -r docs
	use examples && dodoc -r examples

	emake PREFIX="${ED}/usr" install
}