summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitris Kiziridis2020-04-24 07:09:11 +0300
committerDimitris Kiziridis2020-04-24 07:09:11 +0300
commit5caf98fe275a266f4d9c44db7eaf67ec8b5d41f1 (patch)
treeaf78cf21a49a2f97d58837dab108704a0fc4d3f7
downloadaur-5caf98fe275a266f4d9c44db7eaf67ec8b5d41f1.tar.gz
Initial commit
-rw-r--r--.SRCINFO13
-rw-r--r--PKGBUILD17
2 files changed, 30 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..8a7352ed06ca
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,13 @@
+pkgbase = skm-bin
+ pkgdesc = A simple and powerful SSH keys manager
+ pkgver = 0.8
+ pkgrel = 1
+ url = https://timothyye.github.io/skm
+ arch = x86_64
+ license = MIT
+ provides = skm
+ source = https://github.com/TimothyYe/skm/releases/download/V0.8/skm-linux64-0.8.tar.gz
+ sha256sums = 7ede4eec2495dc346b412cd44baf8600cb84702c0623ef8dd9492bdb1cc34894
+
+pkgname = skm-bin
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..f235a8060a18
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,17 @@
+# Maintainer: Dimitris Kiziridis <ragouel at outlook dot com>
+
+pkgname=skm-bin
+pkgver=0.8
+pkgrel=1
+pkgdesc="A simple and powerful SSH keys manager"
+arch=('x86_64')
+url='https://timothyye.github.io/skm'
+license=('MIT')
+provides=("${pkgname%-bin}")
+source=("https://github.com/TimothyYe/skm/releases/download/V${pkgver}/skm-linux64-${pkgver}.tar.gz")
+sha256sums=('7ede4eec2495dc346b412cd44baf8600cb84702c0623ef8dd9492bdb1cc34894')
+
+package() {
+ install -Dm755 "${srcdir}/${pkgname%-bin}" \
+ "${pkgdir}/usr/bin/${pkgname%-bin}"
+} \ No newline at end of file