33 lines
1.1 KiB
Bash
33 lines
1.1 KiB
Bash
# Template file for 'browserpass'
|
|
pkgname=browserpass
|
|
version=2.0.10
|
|
revision=2
|
|
build_style=go
|
|
go_import_path="github.com/dannyvankooten/browserpass"
|
|
go_package="${go_import_path}/cmd/browserpass"
|
|
hostmakedepends="git"
|
|
short_desc="Browser extension for pass"
|
|
maintainer="John <johnz@posteo.net>"
|
|
license="MIT"
|
|
homepage="https://github.com/dannyvankooten/browserpass"
|
|
distfiles="https://github.com/dannyvankooten/browserpass/archive/${version}.tar.gz"
|
|
checksum=b7c4b41a2bced21f9bcc42ddefd4c5baa9b0580f914a6df8d42f638ea70f1b3a
|
|
|
|
post_build() {
|
|
sed -i "s:%%replace%%:/usr/bin/browserpass:" chrome/host.json firefox/host.json
|
|
}
|
|
|
|
post_install() {
|
|
vlicense LICENSE
|
|
|
|
local targetname=com.dannyvankooten.browserpass.json
|
|
|
|
vinstall firefox/host.json 644 usr/lib/mozilla/native-messaging-hosts $targetname
|
|
|
|
vinstall chrome/host.json 644 etc/chromium/native-messaging-hosts $targetname
|
|
vinstall chrome/policy.json 644 etc/chromium/policies/managed $targetname
|
|
|
|
vinstall chrome/host.json 644 etc/opt/chrome/native-messaging-hosts $targetname
|
|
vinstall chrome/policy.json 644 etc/opt/chrome/policies/managed $targetname
|
|
}
|