summarylogtreecommitdiffstats
path: root/iwyu.install
blob: 65f105a3c21a5d027f8030b6495b15c640489f3a (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
msg() {
  echo -e "\x1b[94m::\x1b[0m $1"
}

show-msg() {
echo
msg "To avoid conflict with another packages these files were renamed:"

  cat << EOF

    fix_includes.py -> iwyu-fix-includes
    iwyu_tool.py -> iwyu-tool

EOF
}

post_install() {
  show-msg
}

post_upgrade() {
  show-msg
}

# vim:set ts=2 sw=2 ft=sh et: