summaryrefslogtreecommitdiff
path: root/community/virtualbox/PKGBUILD
blob: b876bc751fe960e4019d80cfb5b25826700e427a (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
35
36
37
38
39
# set manually sysctl vm.mmap_min_addr=0 before building this package

# Parallel builds lead to "virtual memory exhausted"?
# not sure, if still needed (or in fact, working)
eval "$(
  declare -f build | \
    sed '
      \@^\s*echo @ {
        N
        \@\n\s*kmk @ d
      }
      s|kmk|kmk -j 1|
    ' | \
    sed '
      \@^\s*\./configure @ {
        s@--disable-\S\+@@g
        s@--enable-\S\+@@g
        s@configure @\0--only-additions --disable-kmods @
      }
    ';
)"

pkgname=(
  $(
    printf '%s\n' "${pkgname[@]}" \
    | grep '^virtualbox-guest-' \
    | grep -v -- '-nox$'
  )
)

# let's not use too much memory, gcc tmpfiles can in this
# case also be put on a real /tmp (instead of tmpfs) to reduce
# preasure on the RAM
eval "$(
  declare -f build | \
    sed '
      /source/ i \ sed -i 's/-pipe//g' Config.kmk
    '
)"