Commit 5509a337 authored by Seblu's avatar Seblu
Browse files

base-seblu: display local and unsused packages

parent 6cd9063a
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -2,11 +2,12 @@

pkgname=base-seblu
pkgver=2013.03.29
pkgrel=1
pkgrel=2
pkgdesc='Provide depends on minimal seblu hosts packages'
arch=('any')
url='https://github.com/seblu/arch-packages'
license=('GPL2')
install=$pkgname.install

package() {
  depends=(

base-seblu.install

0 → 100644
+18 −0
Original line number Diff line number Diff line
# arg 1:  the new package version
# arg 2:  the old package version

# arg 1:  the new package version
post_install() {
  echo '::: Unused dependencies'
  pacman -Qdt
  echo '::: Local-only packages'
  pacman -Qm
}

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

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