-
Notifications
You must be signed in to change notification settings - Fork 1
/
PKGBUILD
26 lines (24 loc) · 1014 Bytes
/
PKGBUILD
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
# Creator: Christof Schlögl <[email protected]>
# Maintainer: Justin Sabelko <[email protected]>
pkgname="chrome-updater"
pkgdesc="Google Chrome with auto updates : Drop the Google Chrome [auto-updater] out of the Launcher in you're Panel/Dock and enjoy using Chrome WITH auto Updates"
pkgver="1.1"
pkgrel=3
depends=('polkit' 'curl' 'wget' 'google-chrome' 'pacman')
url="https://github.com/jbirdjavi/chrome-updater"
arch=('i686', 'x86_64')
source=('google-chrome-auto.desktop'
'chrome.sh'
'json.sh'
'update_chrome.sh')
md5sums=('7eaacbca939bb237f0fabc58c6474bc2'
'59711398faf1a8fabc79cb6a3682d090'
'e92eb9843e08cd2ecf949a09f83de66b'
'0aa3c63c830d604a28b6342cfb5285e2')
license=('MIT')
package_chrome-updater() {
mkdir -p $pkgdir/usr/share/applications; mkdir -p $pkgdir/usr/share/chrome-update;
cp -p $srcdir/google-chrome-auto.desktop $pkgdir/usr/share/applications;
cp -p $srcdir/*.sh $pkgdir/usr/share/chrome-update;
chmod +x $pkgdir/usr/share/chrome-update/chrome.sh;
}