From: Marcin Juszkiewicz Date: Sat, 14 Oct 2006 19:14:17 +0000 (+0000) Subject: fsx: added Linux version as 0.0 because there is no version defined upstream X-Git-Tag: Release-2010-05/1~9453^2~567^2~168 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=811e7d68cfa0d5d4a2e83baa406a4d47c707dc52;p=openembedded.git fsx: added Linux version as 0.0 because there is no version defined upstream --- diff --git a/packages/fsx-linux/.mtn2git_empty b/packages/fsx-linux/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 diff --git a/packages/fsx-linux/fsx-linux_0.0.bb b/packages/fsx-linux/fsx-linux_0.0.bb new file mode 100644 index 0000000000..294af8fdfd --- /dev/null +++ b/packages/fsx-linux/fsx-linux_0.0.bb @@ -0,0 +1,15 @@ +DESCRIPTION = "Asynchronous I/O stress util" + +SRC_URI = "http://www.codemonkey.org.uk/projects/fsx/fsx-linux.c" + +S = "${WORKDIR}" + +do_compile() { + + cd ${S} && ${CC} fsx-linux.c -o fsx-linux -I${STAGING_INCDIR} -L${STAGING_LIBDIR} +} + +do_install() { + install -d ${D}${bindir} + install -m 0755 fsx-linux ${D}${bindir} +}