blob: 61157e24c14278cfef45585c4e358b868c144978 (
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
|
require 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() {
:
}
|