Date: Tuesday, September 10, 2019 @ 18:16:08
Author: grazzolini
Revision: 509181
archrelease: copy trunk to community-staging-any
Added:
keepass-plugin-keeagent/repos/community-staging-any/
keepass-plugin-keeagent/repos/community-staging-any/PKGBUILD
(from rev 509180, keepass-plugin-keeagent/trunk/PKGBUILD)
----------+
PKGBUILD | 36 ++++++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
Copied: keepass-plugin-keeagent/repos/community-staging-any/PKGBUILD (from rev
509180, keepass-plugin-keeagent/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2019-09-10 18:16:08 UTC (rev 509181)
@@ -0,0 +1,36 @@
+# Maintainer: Giancarlo Razzolinit <[email protected]>
+
+pkgname=keepass-plugin-keeagent
+pkgver=0.10.1
+pkgrel=3
+pkgdesc="SSH Agent Plugin for KeePass"
+license=('GPL')
+makedepends=('git' 'nuget')
+depends=('keepass')
+optdepends=('openssh: For integration with ssh-agent' 'gnupg: For integration
with GnuPG SSH agent')
+arch=('any')
+url="https://lechnology.com/software/keeagent/"
+options=('!strip')
+source=("${pkgname}-${pkgver}::git+https://github.com/dlech/KeeAgent.git#tag=v${pkgver}")
+sha512sums=('SKIP')
+
+prepare() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+
+ git submodule update --init --recursive
+
+ nuget restore
+}
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+
+ xbuild /property:Configuration=ReleasePlgx KeeAgent.sln
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ install -Dm644 KeeAgent/bin/ReleasePlgx/KeeAgent.plgx -t
"$pkgdir/usr/share/keepass/plugins/"
+ install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+ install -Dm644 GPL2.txt "$pkgdir/usr/share/licenses/$pkgname/GPL2.txt"
+}