diff options
Diffstat (limited to 'dropbear/dropbear_0.41.oe')
-rw-r--r-- | dropbear/dropbear_0.41.oe | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/dropbear/dropbear_0.41.oe b/dropbear/dropbear_0.41.oe index e69de29bb2..2f36738fe3 100644 --- a/dropbear/dropbear_0.41.oe +++ b/dropbear/dropbear_0.41.oe @@ -0,0 +1,15 @@ +DESCRIPTION="Dropbear SSH Implementation" +LICENSE="MIT" +DEPENDS=virtual/libc zlib ncurses + +SRC_URI="http://matt.ucc.asn.au/dropbear/releases/dropbear-${PV}.tar.bz2 \ + file://${FILESDIR}/configure.patch;patch=1" +S="${WORKDIR}/${P}" + +inherit autotools + +CFLAGS_prepend = "-I. " +LD=${CC} +do_install_prepend () { + install -d ${D}${sbindir} ${D}${bindir} +} |