summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMorris Jobke2016-02-15 10:18:46 +0100
committerMorris Jobke2016-02-15 10:18:46 +0100
commit325aeb748127ef51d8f29b337ef0a02a3b3f7b65 (patch)
tree6a281f27c32ba07ed4f248f7c1aaf22eaa62ecb0
downloadaur-325aeb748127ef51d8f29b337ef0a02a3b3f7b65.tar.gz
initial version of sshcommand
-rw-r--r--.SRCINFO14
-rw-r--r--PKGBUILD16
2 files changed, 30 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..a48aade0630f
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,14 @@
+# Generated by mksrcinfo v8
+# Mon Feb 15 09:18:25 UTC 2016
+pkgbase = sshcommand
+ pkgdesc = Turn SSH into a thin client specifically for your app
+ pkgver = 20160122
+ pkgrel = 1
+ url = https://github.com/dokku/sshcommand
+ arch = any
+ license = mit
+ source = https://raw.githubusercontent.com/dokku/sshcommand/master/sshcommand
+ sha256sums = db08af0b5c70bd242226668777394d79f94c0440d5bc4d4458e0a56501e1b068
+
+pkgname = sshcommand
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..47672f45b101
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,16 @@
+# Maintainer: Morris Jobke <hey AT morrisjobke DOT de>
+
+pkgname=sshcommand
+pkgver=20160122
+pkgrel=1
+pkgdesc='Turn SSH into a thin client specifically for your app'
+arch=('any')
+url='https://github.com/dokku/sshcommand'
+license=('mit')
+
+source=('https://raw.githubusercontent.com/dokku/sshcommand/master/sshcommand')
+sha256sums=('db08af0b5c70bd242226668777394d79f94c0440d5bc4d4458e0a56501e1b068')
+
+package(){
+ install -Dm 755 sshcommand "$pkgdir"/usr/bin/sshcommand
+}