Skip to content
base-seblu.install 315 B
Newer Older
# vim:set ts=2 sw=2 et:

# arg 1:  the new package version
post_install() {
Seblu's avatar
Seblu committed
  # display depency info
  echo '-- Unused dependencies:'
  pacman -Qdt
  echo '-- Local-only packages'
  pacman -Qm
Seblu's avatar
Seblu committed
  return 0
}

# arg 1:  the new package version
# arg 2:  the old package version
post_upgrade() {
  post_install "$1"
}