blob: 669cd5f6b1f20b64529470818d0129cd40ecfcf8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# prepare configure for cross-compilation
sed -i "s@./configure@./configure --host=$TARGET_ARCH --build=$BUILD_ARCH@g" PKGBUILD
# no libedit, introduces a cycle with linux-headers, libedit
sed -i "s@./configure@./configure --disable-readline@" PKGBUILD
# no man page generation
sed -i "/depends=/s/help2man//" PKGBUILD
# see https://bugs.archlinux.org/task/57352
sed -i 's@"\(https://ftp.gnu.org/gnu/inetutils.*\)"@\1@g' PKGBUILD
|