summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 16f154474815f4609e6c434d55a75d9173f91187 (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
# Maintainer: Michael Goehler <somebody dot here at gmx dot de>

pkgname=chrome-shutdown-hook
pkgver=1.2.1
pkgrel=1
pkgdesc="Gently shutdown Chrome/Chromium on logout from Gnome Shell."
arch=('any')
url="https://www.google.com/chrome/index.html"
license=('GPL')
depends=('procps-ng' 'python2' 'gnome-python')
optdepends=('gnome-tweak-tool: to enable this hook as a Gnome Startup Application')
license=('GPL')
source=("chrome-shutdown-hook.desktop"
        "chrome-shutdown-hook.py")
md5sums=('e9e039b29bf1c7a027ef6b3a2946b6a9'
         '6bc8f9293b6311241e0fe9523de788cc')

package() {
  cd "${srcdir}"
  install -Dm755 "chrome-shutdown-hook.py" "${pkgdir}/usr/bin/chrome-shutdown-hook"
  install -Dm644 "chrome-shutdown-hook.desktop" "${pkgdir}/usr/share/applications/chrome-shutdown-hook.desktop"
}

# vim: ts=2 sw=2 et: