summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authoricasdri2016-08-02 18:53:39 -0400
committericasdri2016-08-02 18:53:39 -0400
commitd4b53d3324b3e26f17528621928d410c34fb7ab7 (patch)
tree0b158a8eb1acef726cca595c32980b617965c250
downloadaur-d4b53d3324b3e26f17528621928d410c34fb7ab7.tar.gz
Initial commit for 0.1.0
-rw-r--r--.SRCINFO14
-rw-r--r--PKGBUILD17
2 files changed, 31 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..eef72c367c78
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,14 @@
+# Generated by mksrcinfo v8
+# Tue Aug 2 22:51:27 UTC 2016
+pkgbase = passthesalt-bin
+ pkgdesc = Dead simple asymmetric encryption tool for secure message exchange using libsodium.
+ pkgver = 0.1.0
+ pkgrel = 1
+ url = https://github.com/icasdri/passthesalt
+ arch = any
+ license = GPLv3
+ source = https://github.com/icasdri/passthesalt/releases/download/0.1.0/passthesalt-0.1.0-linux.zip
+ sha384sums = 7782f71287ec79a7a3f151ea6da5bc4c335d5d50c3fc45b0a4787e43d36899a5dfa540994fabe21d5942488dc6c122e2
+
+pkgname = passthesalt-bin
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..19c73039fb95
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,17 @@
+# Maintainer icasdri <icasdri at gmail dot com>
+
+_pkgname=passthesalt
+pkgname=passthesalt-bin
+pkgver=0.1.0
+pkgrel=1
+pkgdesc="Dead simple asymmetric encryption tool for secure message exchange using libsodium."
+arch=(any)
+url="https://github.com/icasdri/passthesalt"
+license=('GPLv3')
+source=("https://github.com/icasdri/passthesalt/releases/download/${pkgver}/passthesalt-${pkgver}-linux.zip")
+sha384sums=('7782f71287ec79a7a3f151ea6da5bc4c335d5d50c3fc45b0a4787e43d36899a5dfa540994fabe21d5942488dc6c122e2')
+
+package() {
+ cd "${srcdir}"
+ install -Dm755 passthesalt "${pkgdir}/usr/bin/passthesalt"
+}