blob: ea237713bde25756dad569691ebcdb2aa9fa1c0e (
plain)
1
2
3
4
5
6
7
8
9
|
# prepare configure for cross-compilation
sed -i "s@./configure@./configure --host=$TARGET_ARCH --build=$BUILD_ARCH@" PKGBUILD
# no unit testing (using C 'check')
sed -i 's@makedepends\(.*\)@#makedepends\1@g' PKGBUILD
# do not build test programs, they need libcheck
sed -i "s@./configure@./configure --disable-tests @" PKGBUILD
|