Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/extra/pulseaudio/PKGBUILD
blob: eccb80b09611298d7ae8f0e608fddff73cc32949 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# pulseaudio, disable avahi and gtk3 on i486
makedepends=(${makedepends[@]//avahi/})
makedepends=(${makedepends[@]//gtk3/})

makedepends_i686=('avahi')
makedepends_i686+=('gtk3')
makedepends_pentium4=("${makedepends_i686[@]}")

if [ "${CARCH}" = 'i486' ]; then
  eval "$(
    declare -f build | \
      sed '
        s/\(arch-meson pulseaudio build\)/\1 -D gtk=disabled -D avahi=disabled/
      '
  )"
  eval "$(
    declare -f package_pulseaudio-zeroconf | \
      sed '
        /depends=/ {
          s/avahi//
        }
     '
  )"
  eval "$(
    declare -f package_pulseaudio | \
      sed '
        /_pick.*libavahi-wrap.so/d
     '
  )"
  
fi