blob: b8de07b79442d0de4328dbd3a44dd64573b7f8e1 (
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
|
# Install file for makesure@AUR (-*- sh -*-)
post_install() {
command -v gawk >/dev/null 2>&1 && {
cat <<EOF
NB: makesure will use the installed gawk to provide awk.
Gawk v5.2.1 is known to produce a warning like this:
gawk: warning: The time extension is obsolete. Use the timex extension from gawkextlib instead.
This annoyance that should go away with the next version of gawk.
Please see https://github.com/xonixx/makesure/issues/118 for details.
EOF
}
true
}
post_upgrade() {
post_install "$1"
}
# eof
|