blob: 323c71ec6cc8ae5e1bb8335eecb9499d29562c22 (
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
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit multiprocessing savedconfig toolchain-funcs
if [[ ${PV} == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/landley/toybox.git"
else
SRC_URI="https://landley.net/code/toybox/downloads/${P}.tar.gz"
KEYWORDS="~amd64 ~arm64 ~x86"
fi
DESCRIPTION="Common linux commands in a multicall binary"
HOMEPAGE="https://landley.net/code/toybox/"
LICENSE="0BSD"
SLOT="0"
DEPEND="virtual/libcrypt:="
RDEPEND="${DEPEND}"
src_prepare() {
default
restore_config .config
}
src_configure() {
tc-export CC STRIP
export HOSTCC="$(tc-getBUILD_CC)"
# Respect CFLAGS
export OPTIMIZE="${CFLAGS}"
if [[ -f .config ]]; then
yes "" | emake -j1 oldconfig > /dev/null
return 0
else
einfo "Could not locate user configfile, so we will save a default one"
emake -j1 defconfig > /dev/null
fi
}
src_compile() {
unset CROSS_COMPILE
export CPUS=$(makeopts_jobs)
emake V=1
}
src_test() {
emake test
}
src_install() {
save_config .config
newbin generated/unstripped/toybox toybox
}
|