diff options
Diffstat (limited to 'recipes')
-rw-r--r-- | recipes/gtk-webcore/midori_0.2.1.bb | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/recipes/gtk-webcore/midori_0.2.1.bb b/recipes/gtk-webcore/midori_0.2.1.bb index 7439a85e3e..3eaf0f0bf8 100644 --- a/recipes/gtk-webcore/midori_0.2.1.bb +++ b/recipes/gtk-webcore/midori_0.2.1.bb @@ -5,6 +5,10 @@ DEPENDS += "python-native python-docutils-native" SRC_URI = "http://archive.xfce.org/src/apps/midori/0.2/midori-${PV}.tar.bz2 \ file://waf" +SRC_URI_append_shr = " file://config " + +PR = "r1" + do_configure() { cp -f ${WORKDIR}/waf ${S}/ sed -i -e 's:, shell=False::g' wscript @@ -27,5 +31,8 @@ do_configure() { echo "LINK_CC = '${CXX}'" >> ./_build_/c4che/default.cache.py } - +do_install_append_shr() { + install -d ${D}${sysconfdir}/xdg/midori + install -m 0644 ${WORKDIR}/config ${D}${sysconfdir}/xdg/midori +} |