diff options
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 +} |