]> git.ipfire.org Git - ipfire-3.x.git/blob - pkgs/build-essentials/buildsystem-tools/functions-constants
avahi: Update to 0.6.30.
[ipfire-3.x.git] / pkgs / build-essentials / buildsystem-tools / functions-constants
1 #!/bin/bash
2
3 # Debugging mode for these scripts
4 DEBUG=0
5
6 # Interpreters that should not be found by find_interpreters()
7 INTERPRETERS_TO_BE_SKIPPED="/usr/bin/env"
8
9 # Some path constants...
10 LIBRARY_PATHS="/lib /usr/lib /libexec /usr/libexec"
11 BINARY_PATHS="${LIBRARY_PATHS} /bin /sbin /usr/bin /usr/sbin"
12
13 # List of directories that could probably empty and are removed automatically
14 # so they won't appear in any package.
15 ORPHAN_CANDIDATES="${BINARY_PATHS} /usr /usr/include /usr/share"
16 for i in $(seq 0 9); do
17 ORPHAN_CANDIDATES="${ORPHAN_CANDIDATES} /usr/share/man/man${i}"
18 done
19 ORPHAN_CANDIDATES="${ORPHAN_CANDIDATES} /usr/lib/pkgconfig"
20 ORPHAN_CANDIDATES="${ORPHAN_CANDIDATES} /usr/lib/python*"
21