33 lines
1.1 KiB
Bash
33 lines
1.1 KiB
Bash
# Template file for 'browserpass'
|
|
pkgname=browserpass
|
|
version=2.0.21
|
|
revision=3
|
|
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=df318a98187e718a49d9d579c0184e39d41a8b8e6f53ddb9a7d8efab8ee2fcac
|
|
|
|
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
|
|
}
|