summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrederik Schwan2020-05-17 05:04:30 +0200
committerFrederik Schwan2020-05-17 05:04:30 +0200
commitdcc99bc4f0ef38e09e1317dfd983472529b23cd7 (patch)
tree1238a3f7a07d8f6e2ab352e131e1c11d8f384979
parent003c2939b96895029d45b54f62295aeedfea2ccc (diff)
downloadaur-dcc99bc4f0ef38e09e1317dfd983472529b23cd7.tar.gz
upgpkg: pinentry-rofi 1.0.2-2
-rw-r--r--.SRCINFO9
-rw-r--r--LICENSE20
-rw-r--r--PKGBUILD15
3 files changed, 35 insertions, 9 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 6cb184d53d68..21e3c2485bd2 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,13 +1,16 @@
pkgbase = pinentry-rofi
pkgdesc = rofi-based pinentry implementation
pkgver = 1.0.2
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/plattfot/pinentry-rofi
arch = any
- license = MIT
+ license = custom:MIT
depends = guile
- source = https://github.com/plattfot/pinentry-rofi/archive/1.0.2.tar.gz
+ depends = rofi
+ source = https://github.com/plattfot/pinentry-rofi/archive/1.0.2/pinentry-rofi-1.0.2.tar.gz
+ source = LICENSE
b2sums = 459e28272b2f7e145f4eefc80b55b1d0e61ced1179f88ece1dca346b3364d79ba2682bb4e18e3b2e446d35af144297f2d5da71085a04dc85b41e4247d0c94117
+ b2sums = 807b094561801b696f11f57819fc94283a7aa344cb00cbc7aea374c6e669e09ac85a9e07327b100fe544fd8149b3a4dfa4b94dd6ce9746810427a07dc2f5b01d
pkgname = pinentry-rofi
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 000000000000..08c88f7f8717
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,20 @@
+Copyright © 2016 Quentin "Sardem FF7" Glidic
+Copyright © 2018-2020 Fredrik "PlaTFooT" Salomonsson
+
+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 69333495daf4..8d0700076c15 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,15 +2,18 @@
pkgname=pinentry-rofi
pkgver=1.0.2
-pkgrel=1
+pkgrel=2
pkgdesc='rofi-based pinentry implementation'
arch=('any')
url='https://github.com/plattfot/pinentry-rofi'
-license=('MIT')
-depends=('guile')
-source=("https://github.com/plattfot/pinentry-rofi/archive/${pkgver}.tar.gz")
-b2sums=('459e28272b2f7e145f4eefc80b55b1d0e61ced1179f88ece1dca346b3364d79ba2682bb4e18e3b2e446d35af144297f2d5da71085a04dc85b41e4247d0c94117')
+license=('custom:MIT')
+depends=('guile' 'rofi')
+source=("https://github.com/plattfot/pinentry-rofi/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz"
+ LICENSE)
+b2sums=('459e28272b2f7e145f4eefc80b55b1d0e61ced1179f88ece1dca346b3364d79ba2682bb4e18e3b2e446d35af144297f2d5da71085a04dc85b41e4247d0c94117'
+ '807b094561801b696f11f57819fc94283a7aa344cb00cbc7aea374c6e669e09ac85a9e07327b100fe544fd8149b3a4dfa4b94dd6ce9746810427a07dc2f5b01d')
package() {
- install -Dm755 "${srcdir}/${pkgname}-${pkgver}/pinentry-rofi.scm" "${pkgdir}/usr/bin/pinentry-rofi"
+ install -Dm755 "${srcdir}"/${pkgname}-${pkgver}/pinentry-rofi.scm "${pkgdir}"/usr/bin/pinentry-rofi
+ install -Dm644 -t "${pkgdir}"/usr/share/licenses/${pkgname}/ "${srcdir}"/LICENSE
}