blob: 996630daca6f56db522b2131b3955be32c1714fc (
plain)
1
2
3
4
5
6
7
8
9
10
|
pkgctl_repo_patch_arch32() {
local pkgname="$1"
# add the remote branch with our patches
git -C "${pkgname}" remote add -m master archlinux32 https://git.archlinux32.org/packages/
# extend architecture with our architecture
awk -i inplace '!/^arch=[^#]*any/ {gsub(/^arch=\(/,"arch=(i486 i686 pentium4 ")}; {print}' \
"${pkgname}/PKGBUILD"
}
|