blob: 50998f91f42024253696641fd1725d1f771d501e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# Maintainer: scan
pkgname=keepass-plugin-rpc
pkgver=1.12.1
pkgrel=1
pkgdesc="RPC plugin for Keepass"
license=('GPL')
depends=("keepass")
url="https://github.com/kee-org/keepassrpc"
source=(https://github.com/kee-org/keepassrpc/releases/download/v${pkgver}/KeePassRPC.plgx)
arch=(any)
sha256sums=('73468bcb57472ca6d17e45294136e4d2a4e69ac19e500225f71deab6ad3f1a5e')
package(){
mkdir -p "${pkgdir}"/usr/share/keepass/Plugins
install -m644 KeePassRPC.plgx "${pkgdir}"/usr/share/keepass/Plugins
}
|