summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authord1ceward2020-04-07 10:17:44 +0200
committerd1ceward2020-04-07 10:17:44 +0200
commitd1c772cfe40f948438ea86f974b1c7d6414e33df (patch)
treea69466be27306dcd8d76746c77d549672c30c25e
parent9f8dbd8e7791851012c8fe0e84c1d8d5f1472e6a (diff)
downloadaur-d1c772cfe40f948438ea86f974b1c7d6414e33df.tar.gz
upgpkg: plugn 0.3.2-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 1c9b187f87ad..ea2993b3d41e 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,12 +1,14 @@
pkgbase = plugn
pkgdesc = Hook system that lets users extend your application with plugins
pkgver = 0.3.2
- pkgrel = 3
+ pkgrel = 4
url = https://github.com/dokku/plugn
arch = x86_64
license = MIT
source = https://github.com/dokku/plugn/releases/download/v0.3.2/plugn_0.3.2_linux_x86_64.tgz
+ source = LICENSE
sha256sums = 2b07d5a0272d6f04eaad9ee7bd3953816a3f46d62399bb93b490a935696d567c
+ sha256sums = b1ac2fed5ac269fb7bbf651a3d37ef5fd56d2c33320e17cb6e23a22a93f5c046
pkgname = plugn
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 3ae354c0e9ef..4c06b3889d01 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,17 +3,18 @@
pkgname=plugn
pkgver=0.3.2
-pkgrel=3
+pkgrel=4
pkgdesc='Hook system that lets users extend your application with plugins'
arch=('x86_64')
url='https://github.com/dokku/plugn'
license=('MIT')
-source=("https://github.com/dokku/plugn/releases/download/v${pkgver}/plugn_${pkgver}_linux_x86_64.tgz")
-sha256sums=('2b07d5a0272d6f04eaad9ee7bd3953816a3f46d62399bb93b490a935696d567c')
+source=("https://github.com/dokku/plugn/releases/download/v${pkgver}/plugn_${pkgver}_linux_x86_64.tgz"
+ 'LICENSE')
+sha256sums=('2b07d5a0272d6f04eaad9ee7bd3953816a3f46d62399bb93b490a935696d567c'
+ 'b1ac2fed5ac269fb7bbf651a3d37ef5fd56d2c33320e17cb6e23a22a93f5c046')
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"
}