blob: 4468168d90d8a792099371acfc9442bf0c9eb9fa (
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
26
27
28
29
30
|
# Maintainer: Mike Hicklen (hicklemon) <mike@xfs.repair>
# Maintainer: Laszlo Malina <laszlo@malina.hu>
pkgname=keeper-password-manager
pkgver=16.11.3
pkgrel=1
pkgdesc="Keeper is the world's #1 most downloaded password keeper and secure digital
vault for protecting and managing your passwords and other secret information."
arch=('x86_64')
url="https://keepersecurity.com"
license=('Custom')
depends=('libsecret' 'nss' 'libxss' 'gtk3')
source=("https://keepersecurity.com/desktop_electron/Linux/repo/deb/keeperpasswordmanager_${pkgver}_amd64.deb"
'LICENSE')
sha512sums=('ac57cd2aa5aff37bf6f5b6404b65d5939ef8ee4d4fdcb3399ca231410809264783a68671c31bea9e7b7aafb1e2345ef501c1125bee6d7af014c87926a4b4d157'
'SKIP')
package() {
bsdtar -xf "$srcdir"/data.tar.xz -C "$pkgdir"
echo "Setting needed '4755' mode to file: chrome-sandbox."
chmod 4755 "$pkgdir"/usr/lib/keeperpasswordmanager/chrome-sandbox
echo "If you are updating from 16.0.0 to a newer version, you will need to set '755' mode on directories: resources/*, locales, swiftshader - commands are below, USE AT YOUR OWN RISK:"
echo 'find /usr/lib/keeperpasswordmanager/resources -type d -print0 | xargs -0 chmod 755'
echo 'chmod 755 /usr/lib/keeperpasswordmanager/locales'
echo 'chmod 755 /usr/lib/keeperpasswordmanager/swiftshader'
install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
install -Dm644 "$pkgdir"/usr/lib/keeperpasswordmanager/LICENSES.chromium.html "$pkgdir"/usr/share/licenses/chromium/LICENSES.chromium.html
}
|