aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/aiostress/aiostress_0.0.bb
blob: 430e8a50ad1dcbcd93678635205018d3b9080559 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
DESCRIPTION = "Asynchronous I/O stress util"
LICENSE = "GPLv2"
DEPENDS = "libaio"
PR ="r1"

SRC_URI = "http://mirrors.easynews.com/linux/suse/people/mason/utils/aio-stress.c"

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}
}