aboutsummaryrefslogtreecommitdiffstats
path: root/recipes-tools/rt-app/rt-app.bb
blob: acce4372bd471c2878e3f75eed392b33cf17496e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
DESCRIPTION = "rt-app is a test application that starts multiple periodic threads in order to simulate a real-time periodic load"
SECTION = "devel"
LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://COPYING;endline=339;md5=e43fc16fccd8519fba405f0a0ff6e8a3"
PR = "r1"

SRCREV = "e81cbe9f76ee298feded17bb7455d4deb2fb32af"

SRC_URI = "git://github.com/gbagnoli/rt-app.git \
	file://0001-set-with-deadline-as-a-default-to-go-around-yocto-bu.patch \
	"

S = "${WORKDIR}/git"

inherit autotools gettext pkgconfig

do_configure_prepend() {
	autoreconf --install --verbose --force
}

do_install() {
     	install -d ${D}${bindir}
     	install -m 0755 src/rt-app ${D}${bindir}
}

FILES_{PN} = "${bindir}/rt-app" 

PARALLEL_MAKE = ""