blob: 1e28caf33eb7bb2c02cbfddcfcd750783b62766b (
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
|
include crimsonfields_${PV}.bb
inherit native
DEPENDS = "libsdl-native libsdl-ttf-native"
export SDL_CONFIG = "${STAGING_BINDIR}/sdl-config-native"
do_configure() {
gnu-configize
oe_runconf
}
do_compile() {
cd tools && oe_runmake
}
do_stage() {
for binary in ${HOST_TOOLS}
do
install -m 0755 tools/$binary ${STAGING_BINDIR}
done
install -m 0644 tools/default.* ${STAGING_DATADIR}
}
do_install() {
:
}
|