summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 5fff5b41f97f0d6b1ca0b0e1cfc4f4453dd3c150 (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
31
32
33
34
35
36
37
# Maintainer: Kalle Lindqvist <kalle.lindqvist@mykolab.com>

pkgname=gnome-shell-extension-password-manager-search-git
pkgver=r47.2fe8a8c
pkgrel=1
pkgdesc="Search for logins stored in online password managers."
arch=(any)
url="https://github.com/ellakk/password-manager-search"
license=(GPL3)
depends=(gnome-shell)
makedepends=(git glib2)
optdepends=('1password-cli'
	'bitwarden-cli: For Bitwarden support'
	'lastpass-cli: For LastPass support'
	'xclip: Option for setting the clipboard'
	'xsel: Option for setting the clipboard')
source=("${pkgname}::git+${url}")
sha256sums=('SKIP')

pkgver() {
	cd "${srcdir}/${pkgname}"

	printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

build() {
	glib-compile-schemas "${srcdir}/${pkgname}/schemas/"
}

package() {
	_uuid="password-manager-search@kalle.lindqvist.mykolab.com"
	cd "${srcdir}/${pkgname}"

	install -dm755 "${pkgdir}/usr/share/gnome-shell/extensions/${_uuid}"
	cp -r * "${pkgdir}/usr/share/gnome-shell/extensions/${_uuid}/"
}