summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitris Kiziridis2020-03-30 23:00:58 +0300
committerDimitris Kiziridis2020-03-30 23:00:58 +0300
commit4b80b639ce330cfb3b94100fdef115ad2baa7dc7 (patch)
tree2a99f8e5a8b9a6b8688701cc5e556b4aad940a07
downloadaur-4b80b639ce330cfb3b94100fdef115ad2baa7dc7.tar.gz
Initial commmit
-rw-r--r--.SRCINFO13
-rw-r--r--PKGBUILD18
2 files changed, 31 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..4c318a80bbd0
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,13 @@
+pkgbase = ssh-vault-bin
+ pkgdesc = Encrypt/Decrypt using ssh keys
+ pkgver = 0.12.6
+ pkgrel = 1
+ url = https://ssh-vault.com
+ arch = x86_64
+ license = BSD-3-Clause
+ provides = ssh-vault
+ source = https://dl.bintray.com/nbari/ssh-vault/ssh-vault_0.12.6_linux_amd64.tar.gz
+ md5sums = 1c1987f9b6034d86256fb193d34c05de
+
+pkgname = ssh-vault-bin
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..2376dfc1c5e2
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,18 @@
+# Maintainer: Dimitris Kiziridis <ragouel at outlook dot com>
+
+pkgname=ssh-vault-bin
+pkgver=0.12.6
+pkgrel=1
+provides=('ssh-vault')
+pkgdesc="Encrypt/Decrypt using ssh keys"
+arch=('x86_64')
+url='https://ssh-vault.com'
+license=('BSD-3-Clause')
+source=("https://dl.bintray.com/nbari/ssh-vault/ssh-vault_${pkgver}_linux_amd64.tar.gz")
+md5sums=('1c1987f9b6034d86256fb193d34c05de')
+
+package() {
+ cd "${srcdir}/ssh-vault_${pkgver}_linux_amd64"
+ install -Dm755 ssh-vault "${pkgdir}/usr/bin/ssh-vault"
+ install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/ssh-vault/LICENSE"
+} \ No newline at end of file