diff options
author | Marcin Juszkiewicz <hrw@openembedded.org> | 2006-10-14 19:14:17 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openembedded.org> | 2006-10-14 19:14:17 +0000 |
commit | 811e7d68cfa0d5d4a2e83baa406a4d47c707dc52 (patch) | |
tree | bea9269b4dbc6510be04cb994ee87118c9bede39 /packages | |
parent | 82c1da2b581162386d8ec5ff0e707c9c3e5578a6 (diff) |
fsx: added Linux version as 0.0 because there is no version defined upstream
Diffstat (limited to 'packages')
-rw-r--r-- | packages/fsx-linux/.mtn2git_empty | 0 | ||||
-rw-r--r-- | packages/fsx-linux/fsx-linux_0.0.bb | 15 |
2 files changed, 15 insertions, 0 deletions
diff --git a/packages/fsx-linux/.mtn2git_empty b/packages/fsx-linux/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/fsx-linux/.mtn2git_empty 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} +} |