From 7b1d216a133d3df4597c336e3a6c3c941e69989a Mon Sep 17 00:00:00 2001 From: Darren Hart Date: Thu, 26 Jan 2012 10:36:30 -0800 Subject: ranpwd: Add ranpwd recipe ranpwd is used to generate random strings of various types, including passwords, UUIDs, and MAC addresses. Signed-off-by: Darren Hart --- meta-sys940x/recipes-extended/ranpwd/ranpwd_git.bb | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 meta-sys940x/recipes-extended/ranpwd/ranpwd_git.bb diff --git a/meta-sys940x/recipes-extended/ranpwd/ranpwd_git.bb b/meta-sys940x/recipes-extended/ranpwd/ranpwd_git.bb new file mode 100644 index 00000000..b4e0f549 --- /dev/null +++ b/meta-sys940x/recipes-extended/ranpwd/ranpwd_git.bb @@ -0,0 +1,24 @@ +DESCRIPTION = "Random password generator" +LICENSE = "GPLv2+" +LIC_FILES_CHKSUM = "file://ranpwd.c;beginline=1;endline=11;md5=0e8585e19117526efedfaeb50c345d7a" +SECTION = "console/utils" +PV = "1.2+git${SRCPV}" +PR = "r0" + +inherit autotools + +SRC_URI = "git://git.zytor.com/utils/ranpwd.git" +SRCREV = "b62aab579e288715b82d5575befaa2b8ff210c2b" + +S="${WORKDIR}/git" + +do_configure_prepend () { + if [ ! -e acinclude.m4 -a -e aclocal.m4 ]; then + cp aclocal.m4 acinclude.m4 + fi +} + +do_install() { + install -d ${D}/${bindir} + install -m 0755 ${S}/ranpwd ${D}/${bindir}/ranpwd +} -- cgit v1.2.3-54-g00ecf