summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authororhun2020-07-31 15:31:36 +0300
committerorhun2020-07-31 15:31:36 +0300
commit5fd0c2cae7ff1d0a2b27746e38345b89a9e0e1f3 (patch)
treece7e53e882cf1e1ddcdbf720bc51ede9ad796972
downloadaur-5fd0c2cae7ff1d0a2b27746e38345b89a9e0e1f3.tar.gz
Release v2.1.0
-rw-r--r--.SRCINFO14
-rw-r--r--.gitignore5
-rw-r--r--PKGBUILD15
3 files changed, 34 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..8b7010ed995c
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,14 @@
+pkgbase = notp-bin
+ pkgdesc = One Time Password Generator
+ pkgver = 2.1.0
+ pkgrel = 1
+ url = https://github.com/kondanta/notp
+ arch = x86_64
+ license = MIT
+ conflicts = notp
+ conflicts = notp-git
+ source = notp::https://github.com/kondanta/notp/releases/download/v2.1.0/notp_linux
+ sha512sums = 89d717d71233dcc418e36af66929a3c38ae78195d2656d8f77732fd7bf3062fff1f0592868a1473fde2168f181e896e98f2afc8c277bcfeeeb01b923e3c73b7d
+
+pkgname = notp-bin
+
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000000000000..5e2bd1151d42
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,5 @@
+notp
+/pkg/
+/src/
+*.tar.xz
+*.tar.gz \ No newline at end of file
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..4f7f06bbae97
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,15 @@
+# Maintainer: orhun <orhunparmaksiz@gmail.com>
+pkgname=notp-bin
+pkgver=2.1.0
+pkgrel=1
+pkgdesc="One Time Password Generator"
+arch=('x86_64')
+url="https://github.com/kondanta/notp"
+license=('MIT')
+conflicts=("${pkgname%-bin}" "${pkgname%-bin}-git")
+source=("${pkgname%-bin}::$url/releases/download/v$pkgver/${pkgname%-bin}_linux")
+sha512sums=('89d717d71233dcc418e36af66929a3c38ae78195d2656d8f77732fd7bf3062fff1f0592868a1473fde2168f181e896e98f2afc8c277bcfeeeb01b923e3c73b7d')
+
+package() {
+ install -Dt "$pkgdir/usr/bin/" "$srcdir/${pkgname%-bin}"
+} \ No newline at end of file