blob: 0f70119b62171fc530ada01fb17e7e3de54ecead (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# description missing
eval "$(
declare -f build | \
sed '
s|\(make build\)\([;[:space:]]\)|\1-nocheck\2|
s|--enable-ext-wiki-publisher|--disable-ext-wiki-publisher|
s|--enable-ext-nlpsolver|--disable-ext-nlpsolver|
'
)"
# no coin-ormp on i486 (for now, suitesparse has atomic issues)
if [ "$CARCH" = 'i486' ]; then
makedepends=(${makedepends[@]//coin-or-mp/})
fi
# no KDE/Plasma on i486
if [ "$CARCH" = 'i486' ]; then
makedepends=(${makedepends[@]//plasma-framework/})
fi
|