blob: 3ff8384a8651b44c4aa4472411a034bd874cedce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# Maintainer: Eivind Eide <xenofil AT gmail DOT com>
# Contributor: Clément DÉMOULINS <clement AT archivel DOT fr>
pkgname=gnome-ssh-askpass3
_pkgname=openssh
pkgver=8.4p1
pkgrel=1
pkgdesc='A GTK3 passphrase requester for ssh-add.'
arch=('x86_64')
url="https://www.openssh.com/portable.html"
license=('custom:2-term BSD licence')
depends=('gtk3')
provides=('x11-ssh-askpass')
conflicts=('x11-ssh-askpass' 'ssh-askpass-fullscreen' 'gnome-ssh-askpass' 'gnome-ssh-askpass2')
source=(https://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/${_pkgname}-${pkgver}.tar.gz
${pkgname}.sh)
sha256sums=('5a01d22e407eb1c05ba8a8f7c654d388a13e9f226e4ed33bd38748dafa1d2b24'
'8a18ef3a2c6e61f117db49aabef4e191fea47df43907872113fd64536d2f4c11')
build() {
cd "${_pkgname}-${pkgver}/contrib"
make ${pkgname}
}
package() {
cd "${_pkgname}-${pkgver}/contrib"
install -D -m 755 ${pkgname} "${pkgdir}/usr/lib/ssh/${pkgname}"
install -D -m 755 "${srcdir}/${pkgname}.sh" "${pkgdir}/etc/profile.d/${pkgname}.sh"
install -D -m 644 ../LICENCE "${pkgdir}/usr/share/licenses/${pkgname}/LICENCE"
}
|