blob: 0ea408f9a67e49d0e330636014c313e34779f582 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# hotfix for changed git repo (already fixed upstream in staging)
source[0]="git+https://codeberg.org/soundtouch/soundtouch.git#tag=${_tag}"
if [ "$CARCH" = 'i486' -o "$CARCH" = 'i686' ]; then
eval "$(
declare -f prepare | \
sed '
s|./configure|./configure --disable-x86-optimizations|g
'
)"
fi
|