forked from gentoo/guru
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshellspec-0.28.1-r3.ebuild
83 lines (64 loc) · 1.48 KB
/
shellspec-0.28.1-r3.ebuild
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit prefix
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"
SLOT="0"
IUSE="doc examples test"
RESTRICT="!test? ( test )"
RDEPEND="
|| (
>=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? ( ${RDEPEND} )"
PATCHES=( "${FILESDIR}/${P}-fix-tests.patch" )
DOCS=(
CHANGELOG.md
CONTRIBUTING.md
README.md
)
src_prepare() {
default
sed -i "s/lib/$(get_libdir)/" stub/shellspec || die
sed -i "s/LICENSE//g" Makefile || die
local to_analyze=(
examples
helper
lib
libexec
stub/shellspec
shellspec
)
local -a to_prefixify
readarray -t to_prefixify < <(find "${to_analyze[@]}" -type f) || die
hprefixify "${to_prefixify[@]}"
sed -i "s|#!|#!${EPREFIX}|" README.md || die
}
src_compile() { :; }
src_test() {
emake test
}
src_install() {
einstalldocs
use doc && dodoc -r docs
use examples && dodoc -r examples
emake LIBDIR="${ED}/usr/$(get_libdir)" PREFIX="${ED}/usr" install
}