summaryrefslogtreecommitdiff
path: root/extra/doxygen/PKGBUILD
blob: 45a93ff5cc2aca23614fc865b0980cd87b508395 (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
32
33
34
eval "$(
  declare -f package_doxygen | \
    sed '
      2 a arch=('"${arch[@]}"')
    '
  declare -f package_doxygen-doc | \
    sed '
      2 a arch=(any)
    '
)"

if [ "${CARCH}" = "i486" ]; then
  # no qt5
  makedepends=(${makedepends[@]//qt5-base/})

  # no TeX
  makedepends=(${makedepends[@]//texlive-core/})
  makedepends=(${makedepends[@]//texlive-latexextra/})

  # no Graphviz
  makedepends=(${makedepends[@]//graphviz/})

  # no ghostscript
  makedepends=(${makedepends[@]//ghostscript/})

  eval "$(
    declare -f build | \
      sed '
        /make docs/d
        s|-Dbuild_doc:BOOL=ON|-Dbuild_doc:BOOL=OFF|
        s|-Dbuild_wizard:BOOL=ON|-Dbuild_wizard:BOOL=OFF|
      '
  )"
fi