summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorFabien LEFEBVRE2020-03-09 12:12:20 +0100
committerFabien LEFEBVRE2020-03-09 12:12:20 +0100
commit3faade8937ad62247393f568927de8954695e394 (patch)
tree478d3a5cf8527f0daa7292b8976b45ca803326b8
parent51c2593b33cd51a3ffddb03e66c7f3601ff5efb9 (diff)
downloadaur-3faade8937ad62247393f568927de8954695e394.tar.gz
upgpkg: plugn 0.3.2-2
-rw-r--r--.SRCINFO4
-rw-r--r--.gitignore2
-rw-r--r--PKGBUILD10
3 files changed, 9 insertions, 7 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 72d75bc960af..702a4d3353ff 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,10 +1,10 @@
pkgbase = plugn
pkgdesc = Turn SSH into a thin client specifically for your app
pkgver = 0.3.2
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/dokku/plugn
arch = x86_64
- license = bsd
+ license = MIT
source = https://github.com/dokku/plugn/releases/download/v0.3.2/plugn_0.3.2_linux_x86_64.tgz
sha256sums = 2b07d5a0272d6f04eaad9ee7bd3953816a3f46d62399bb93b490a935696d567c
diff --git a/.gitignore b/.gitignore
index 63f01f75e008..a259674dc927 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,4 @@
src/
pkg/
-*.tgz
*.tar.xz
+*.tgz
diff --git a/PKGBUILD b/PKGBUILD
index 7c70ced87268..2bff4e0d1ff1 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,15 +3,17 @@
pkgname=plugn
pkgver=0.3.2
-pkgrel=1
+pkgrel=2
pkgdesc='Turn SSH into a thin client specifically for your app'
arch=('x86_64')
url='https://github.com/dokku/plugn'
-license=('bsd')
+license=('MIT')
source=("https://github.com/dokku/plugn/releases/download/v${pkgver}/plugn_${pkgver}_linux_x86_64.tgz")
sha256sums=('2b07d5a0272d6f04eaad9ee7bd3953816a3f46d62399bb93b490a935696d567c')
-package(){
- install -Dm 755 plugn "$pkgdir"/usr/bin/plugn
+package() {
+ wget -q "https://raw.githubusercontent.com/dokku/plugn/master/LICENSE"
+ install -Dm 755 plugn "${pkgdir}/usr/bin/plugn"
+ install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/plugn/LICENSE"
}