task-base: make it possible for a distro to set it's alsa-state provider
[openembedded.git] / recipes / dtc / dtc.inc
bloba7607ed526bcd332ebb657696143d2012f789780
1 DESCRIPTION = "The Device Tree Compiler is a tool used to manipulate the Open-Firmware-like device tree used by PowerPC kernels."
2 SECTION = "bootloader"
3 PRIORITY = "optional"
4 LICENSE = "GPL"
5 DEPENDS = "flex-native bison-native"
6 BBCLASSEXTEND = "native"
7 INC_PR = "r2"
9 inherit autotools
11 do_install() {
12         install -m 0755 -d ${D}${bindir}        
13         install -m 0755 dtc ${D}${bindir}/dtc
14         install -m 0755 -d ${D}${libdir}
15         install -m 0644 libfdt/libfdt.a ${D}${libdir}/libfdt.a
16         install -m 0755 -d ${D}${includedir}
17         install -m 0644 libfdt/fdt.h ${D}${includedir}/fdt.h
18         install -m 0644 libfdt/libfdt.h ${D}${includedir}/libfdt.h
21 NATIVE_INSTALL_WORKS = "1"