summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authord1ceward2020-04-07 10:26:35 +0200
committerd1ceward2020-04-07 10:26:35 +0200
commitb2704473e9a1c35dc7e3daf365525dd5081cf74b (patch)
treee1860025e5eb1e7368e838b1ea73d5a7869e000e
parent6ab23b3a585c2da2db5496000e4b325fd5bd5c4c (diff)
downloadaur-b2704473e9a1c35dc7e3daf365525dd5081cf74b.tar.gz
upgpkg: sshcommand 0.9.0-4
-rw-r--r--.SRCINFO4
-rw-r--r--LICENSE7
-rw-r--r--PKGBUILD9
3 files changed, 15 insertions, 5 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 528b75ad9811..011287e2dc02 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,12 +1,14 @@
pkgbase = sshcommand
pkgdesc = Turn SSH into a thin client specifically for your app
pkgver = 0.9.0
- pkgrel = 3
+ pkgrel = 4
url = https://github.com/dokku/sshcommand
arch = x86_64
license = MIT
source = https://github.com/dokku/sshcommand/releases/download/v0.9.0/sshcommand_0.9.0_linux_x86_64.tgz
+ source = LICENSE
sha256sums = a617253143c6d0d023a50b0489aa5fb266bd1b3a3ff661aa1424f6826bebbd4e
+ sha256sums = b1ac2fed5ac269fb7bbf651a3d37ef5fd56d2c33320e17cb6e23a22a93f5c046
pkgname = sshcommand
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 000000000000..f600f8e8b30a
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,7 @@
+Copyright (C) 2014 Jeff Lindsay
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/PKGBUILD b/PKGBUILD
index bb43dbecc0c2..f98d13d8b70a 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,17 +3,18 @@
pkgname=sshcommand
pkgver=0.9.0
-pkgrel=3
+pkgrel=4
pkgdesc='Turn SSH into a thin client specifically for your app'
arch=('x86_64')
url='https://github.com/dokku/sshcommand'
license=('MIT')
-source=("https://github.com/dokku/sshcommand/releases/download/v${pkgver}/sshcommand_${pkgver}_linux_x86_64.tgz")
-sha256sums=('a617253143c6d0d023a50b0489aa5fb266bd1b3a3ff661aa1424f6826bebbd4e')
+source=("https://github.com/dokku/sshcommand/releases/download/v${pkgver}/sshcommand_${pkgver}_linux_x86_64.tgz"
+ 'LICENSE')
+sha256sums=('a617253143c6d0d023a50b0489aa5fb266bd1b3a3ff661aa1424f6826bebbd4e'
+ 'b1ac2fed5ac269fb7bbf651a3d37ef5fd56d2c33320e17cb6e23a22a93f5c046')
package() {
- wget -q "https://raw.githubusercontent.com/dokku/sshcommand/master/LICENSE"
install -Dm 755 sshcommand "${pkgdir}/usr/bin/sshcommand"
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/sshcommand/LICENSE"
}