summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMidAutumnMoon2021-02-24 14:09:47 +0800
committerMidAutumnMoon2021-02-24 14:09:47 +0800
commit75dae1c8da75b544385a146abf9a219b5483c8e2 (patch)
treec1222fa80cbc63554645eb97226ec4f1476efce3
downloadaur-75dae1c8da75b544385a146abf9a219b5483c8e2.tar.gz
assh-git: v2.11.3
-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..93ae098eb1e8
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,13 @@
+pkgbase = assh-bin
+ pkgdesc = make your ssh client smarter
+ pkgver = 2.11.3
+ pkgrel = 1
+ url = https://github.com/moul/assh
+ arch = x86_64
+ license = MIT
+ provides = assh
+ source = https://github.com/moul/assh/releases/download/v2.11.3/assh_linux_amd64
+ sha256sums = cc20837cf3f6cbf461e23815ba075e457162b7b5c5bc50ce7554db699f8b7e49
+
+pkgname = assh-bin
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..4ff4a68d0b41
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,18 @@
+# Maintainer: MidAutumnMoon <mid.autumn0moon@gmail.com>
+
+pkgname=assh-bin
+pkgver=2.11.3
+pkgrel=1
+pkgdesc="make your ssh client smarter"
+arch=( 'x86_64' )
+url="https://github.com/moul/assh"
+license=( 'MIT' )
+
+source=( https://github.com/moul/assh/releases/download/v${pkgver}/assh_linux_amd64 )
+sha256sums=( 'cc20837cf3f6cbf461e23815ba075e457162b7b5c5bc50ce7554db699f8b7e49' )
+
+provides=( 'assh' )
+
+package() {
+ install -Dm755 "${srcdir}/assh_linux_amd64" "${pkgdir}/usr/bin/assh"
+}