blob: 20b50c98560413e403e72dfb430e0c7d68c9b9b6 (
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
|
# pandoc is mainly broken currently (FS32#180)
makedepends=(${makedepends[@]//pandoc/})
eval "$(
declare -f build | \
sed '
s/pandoc/:; #pandoc/
'
)"
eval "$(
declare -f package | \
sed '
/exa.1/d
/exa_colors.5/d
'
)"
# CARCH pentium4 makes compilation fail
if [ "$CARCH" = 'pentium4' ]; then
eval "$(
declare -f prepare | \
sed '
s/--target "$CARCH-unknown-linux-gnu"/--target "i686-unknown-linux-gnu"/
'
)"
fi
|