mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-04 16:10:10 +00:00
graphviz: native: create /usr/lib/graphviz/config6 in populate_sysroot
The `dot` tool requires to be run once after installation in order to
create its configuration file.
The do_prepare_recipe_sysroot task uses do_populate_sysroot in order to
prepare the recipe-sysroot-native. Package postinstall scripts are not
executed for -native packages, but files under ${BINDIR}/postinst-* are.
This is quite the same as graphviz-setup.sh does for nativesdk. The
general idea has been taken from
OECORE/meta/classes/pixbufcache.bbclass.
Signed-off-by: Christian Eggers <ceggers@arri.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
This commit is contained in:
parent
aa5b9a1ff0
commit
7c519caa1a
|
|
@ -55,6 +55,17 @@ do_install_append_class-native() {
|
|||
install -m755 ${B}/lib/gvpr/mkdefs ${D}${bindir}
|
||||
}
|
||||
|
||||
# create /usr/lib/graphviz/config6
|
||||
graphviz_sstate_postinst() {
|
||||
mkdir -p ${SYSROOT_DESTDIR}${bindir}
|
||||
dest=${SYSROOT_DESTDIR}${bindir}/postinst-${PN}
|
||||
echo '#!/bin/sh' > $dest
|
||||
echo '' >> $dest
|
||||
echo 'dot -c' >> $dest
|
||||
chmod 0755 $dest
|
||||
}
|
||||
SYSROOT_PREPROCESS_FUNCS_append_class-native = " graphviz_sstate_postinst"
|
||||
|
||||
PACKAGES =+ "${PN}-python ${PN}-perl ${PN}-demo"
|
||||
|
||||
FILES_${PN}-python += "${libdir}/python*/site-packages/ ${libdir}/graphviz/python/"
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user