From 9ad16bc2804fe0ddc38666aa5626f6ec44332bbf Mon Sep 17 00:00:00 2001 From: Marcin Juszkiewicz Date: Sat, 14 Oct 2006 18:32:58 +0000 Subject: [PATCH] aiostress: added as 0.0 as there is no version defined upstream --- packages/aiostress/.mtn2git_empty | 0 packages/aiostress/aiostress_0.0.bb | 17 +++++++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 packages/aiostress/.mtn2git_empty create mode 100644 packages/aiostress/aiostress_0.0.bb diff --git a/packages/aiostress/.mtn2git_empty b/packages/aiostress/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 diff --git a/packages/aiostress/aiostress_0.0.bb b/packages/aiostress/aiostress_0.0.bb new file mode 100644 index 0000000000..8b4085ad4f --- /dev/null +++ b/packages/aiostress/aiostress_0.0.bb @@ -0,0 +1,17 @@ +DESCRIPTION = "Asynchronous I/O stress util" +LICENSE = "GPLv2" +DEPENDS = "libaio" + +SRC_URI = "ftp://ftp.suse.com/pub/people/mason/utils/aio-stress.c;md5sum=727e5fc3566837b3ea72f887d048769b" + +S = "${WORKDIR}" + +do_compile() { + + cd ${S} && ${CC} aio-stress.c -o aio-stress -I${STAGING_INCDIR} -L${STAGING_LIBDIR} -laio -lpthread +} + +do_install() { + install -d ${D}${bindir} + install -m 0755 aio-stress ${D}${bindir} +} -- 2.39.5