f2fdfb1dda
This reverts commit f01bdd674c
.
33 lines
1.2 KiB
Bash
33 lines
1.2 KiB
Bash
# Template file for 'browserpass'
|
|
pkgname=browserpass
|
|
version=3.0.6
|
|
revision=1
|
|
wrksrc="browserpass-native-${version}"
|
|
build_style=go
|
|
go_import_path=github.com/browserpass/browserpass-native
|
|
hostmakedepends="git"
|
|
short_desc="Browser extension for pass"
|
|
maintainer="John <johnz@posteo.net>"
|
|
license="MIT"
|
|
homepage="https://github.com/browserpass/browserpass"
|
|
distfiles="https://github.com/browserpass/browserpass-native/archive/${version}.tar.gz"
|
|
checksum=6a2442192aad8fae3642b925d1ff04368eef3a390043e6164c8eb2fd2a438ceb
|
|
|
|
post_build() {
|
|
vsed -i "s:%%replace%%:/usr/bin/browserpass-native:" \
|
|
browser-files/chromium-host.json browser-files/firefox-host.json
|
|
}
|
|
|
|
post_install() {
|
|
vlicense LICENSE
|
|
|
|
local targetname=com.github.browserpass.native.json
|
|
|
|
vinstall browser-files/firefox-host.json 644 usr/lib/mozilla/native-messaging-hosts $targetname
|
|
|
|
vinstall browser-files/chromium-host.json 644 etc/chromium/native-messaging-hosts $targetname
|
|
vinstall browser-files/chromium-policy.json 644 etc/chromium/policies/managed $targetname
|
|
|
|
vinstall browser-files/chromium-host.json 644 etc/opt/chrome/native-messaging-hosts $targetname
|
|
vinstall browser-files/chromium-policy.json 644 etc/opt/chrome/policies/managed $targetname
|
|
}
|