23 lines
712 B
Bash
23 lines
712 B
Bash
# Template file for 'gnome-ssh-askpass'
|
|
pkgname=gnome-ssh-askpass
|
|
version=7.2p2
|
|
revision=1
|
|
wrksrc="openssh-${version}"
|
|
hostmakedepends="pkg-config"
|
|
makedepends="gtk+-devel"
|
|
short_desc="GTK SSH passphrase grabber (from OpenSSH)"
|
|
maintainer="Christian Neukirchen <chneukirchen@gmail.com>"
|
|
license="BSD"
|
|
homepage="http://www.openssh.org"
|
|
distfiles="ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-$version.tar.gz"
|
|
checksum=a72781d1a043876a224ff1b0032daa4094d87565a68528759c1c2cab5482548c
|
|
|
|
do_build() {
|
|
cd contrib
|
|
${CC} ${CFLAGS} $(pkg-config --cflags gtk+-2.0) gnome-ssh-askpass2.c -o gnome-ssh-askpass $(pkg-config --libs gtk+-2.0) ${LDFLAGS} -lX11
|
|
}
|
|
|
|
do_install() {
|
|
vbin contrib/gnome-ssh-askpass
|
|
}
|