aiostress: added as 0.0 as there is no version defined upstream
authorMarcin Juszkiewicz <hrw@openembedded.org>
Sat, 14 Oct 2006 18:32:58 +0000 (18:32 +0000)
committerMarcin Juszkiewicz <hrw@openembedded.org>
Sat, 14 Oct 2006 18:32:58 +0000 (18:32 +0000)
packages/aiostress/.mtn2git_empty [new file with mode: 0644]
packages/aiostress/aiostress_0.0.bb [new file with mode: 0644]

diff --git a/packages/aiostress/.mtn2git_empty b/packages/aiostress/.mtn2git_empty
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/packages/aiostress/aiostress_0.0.bb b/packages/aiostress/aiostress_0.0.bb
new file mode 100644 (file)
index 0000000..8b4085a
--- /dev/null
@@ -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}
+}