28 lines
805 B
Bash
28 lines
805 B
Bash
# Template file for 'gnome-ssh-askpass'
|
|
pkgname=gnome-ssh-askpass
|
|
version=7.9p1
|
|
revision=1
|
|
wrksrc="openssh-${version}"
|
|
hostmakedepends="pkg-config"
|
|
makedepends="gtk+-devel"
|
|
short_desc="GTK SSH passphrase grabber (from OpenSSH)"
|
|
maintainer="Leah Neukirchen <leah@vuxu.org>"
|
|
license="BSD-3-Clause, BSD-2-Clause"
|
|
homepage="http://www.openssh.org"
|
|
distfiles="https://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-${version}.tar.gz"
|
|
checksum=6b4b3ba2253d84ed3771c8050728d597c91cfce898713beb7b64a305b6f11aad
|
|
|
|
alternatives="
|
|
ssh-askpass:/usr/libexec/ssh-askpass:/usr/bin/gnome-ssh-askpass
|
|
"
|
|
|
|
do_build() {
|
|
cd contrib
|
|
${CC} ${CFLAGS} $(pkg-config --cflags gtk+-2.0) ${pkgname}2.c -o ${pkgname} $(pkg-config --libs gtk+-2.0) ${LDFLAGS} -lX11
|
|
}
|
|
|
|
do_install() {
|
|
vbin contrib/${pkgname}
|
|
vlicense LICENCE
|
|
}
|