blob: 3c4eb9a530ab7bdef73660ce2fd543aa34870759 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# gtk2-ssh-askpass OE build file
# Copyright (C) 2004, Advanced Micro Devices, Inc. All Rights Reserved
# Released under the MIT license (see packages/COPYING)
DESCRIPTION="GTK2 ssh askpass utility"
HOMEPAGE="http://www.cgabriel.org/sw/gtk2-ssh-askpass/"
LICENSE = "GPL"
SECTION = "network/misc"
SRC_URI="http://src.gentoo.pl/distfiles/gtk2-ssh-askpass-${PV}.tar.gz \
file://makefile.patch;patch=1"
DEPENDS="gtk+"
do_install() {
install -d ${D}${bindir}
install -d ${D}${libexecdir}
cp ${S}/gtk2-ssh-askpass ${D}${bindir}
ln -s ${bindir}/gtk2-ssh-askpass ${D}${libexecdir}/ssh-askpass
}
|