blob: 2175b900faced939e39d94691aaf62da3b1a76f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# i486-specific
if [ "${CARCH}" = "i486" ]; then
makedepends+=('python-pip-bootstrap' 'python2-pip-bootstrap')
# disable sphinx for now, needs too many packages
makedepends=(${makedepends[@]//python2-sphinx/})
eval "$(
declare -f build | \
sed '
/make.*html/d
'
)"
pkgname=(${pkgname[@]//python-urllib3-doc})
unset check
fi
|