blob: 6d10d12e5a416745c7f15ca4a554e9437d20108c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
inherit gpe
DEPENDS = "esound-gpe"
do_stage() {
install -d ${STAGING_INCDIR}/gpe
install -m 0644 gpe/soundgen.h ${STAGING_INCDIR}/gpe/soundgen.h
oe_libinstall -so libsoundgen ${STAGING_LIBDIR}
}
do_install_append() {
oe_runmake DESTDIR="${D}" PREFIX="${prefix}" install-devel
}
|