diff options
author | Chris Larson <clarson@kergoth.com> | 2003-09-09 18:51:54 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2003-09-09 18:51:54 +0000 |
commit | 2edeb4cb22ea98a06c7a593431b70a4062c1b2fd (patch) | |
tree | bed59676eb8231954a6a3d6096316d4fb4ab2bc6 /content/dropbear-0.36.oe | |
parent | 68c73a9d7f2164b45ce0d7daaa96384de9b6ca55 (diff) |
BUGFIX: add staging function for ncurses, and make dropbear and zsh build.
BKrev: 3f5e214aJ9TnzKvd0sHVB6qF-CvHEg
Diffstat (limited to 'content/dropbear-0.36.oe')
-rw-r--r-- | content/dropbear-0.36.oe | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/content/dropbear-0.36.oe b/content/dropbear-0.36.oe index b8f04ae0a3..1d4b748074 100644 --- a/content/dropbear-0.36.oe +++ b/content/dropbear-0.36.oe @@ -1,6 +1,14 @@ DESCRIPTION="Dropbear SSH Implementation" LICENSE="MIT" SRC_URI="http://matt.ucc.asn.au/dropbear/dropbear-${PV}.tar.bz2" -DEPENDS=virtual/libc base/zlib +DEPENDS=virtual/libc zlib ncurses S="${WORKDIR}/${P}" + +CFLAGS_append = " -I${S}/libtomcrypt" +LD=${CC} +do_install () { + set -e + install -d ${D}/usr/sbin + oe_runmake DESTDIR=${D} install +} |