summaryrefslogtreecommitdiff
path: root/extra/archiso/PKGBUILD
blob: 28b8561c70bf6011936b660385f36559b3c241b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# We patch on-the-fly. This way, we don't need to publish our own archiso32 source and keep that in-sync.

if declare -f build; then
  >&2 echo 'Ooops, upstream added a build() function: more elaborate patching will be required.'
  exit 1
fi

build() {
  cd "${pkgbase}/configs/releng"
  mv packages.x86_64 packages.i686
  sed -i '
    s@archlinux@archlinux32@g
    s@ARCH_@ARCH32_@g
  ' releng/profiledef.sh
  find airootfs -type f -exec \
  sed -i '
    s@\bx86_64\b@i686@g
    s@Arch Linux@\0 32@g
    s@pacman-key --populate archlinux@\032@g
  ' {} +
}