diff options
author | Andreas Müller <schnitzeltony@googlemail.com> | 2013-05-13 14:41:15 +0200 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2013-05-19 09:37:30 +0200 |
commit | b4d3770a32b39422b5d7af1783ed8390e8ff477e (patch) | |
tree | 064c82bf3454f670ba46691b7a216faf1da31331 /meta-xfce | |
parent | 29cd0c6255462ec8655a27cd62cb3055f1e9b649 (diff) | |
download | meta-openembedded-b4d3770a32b39422b5d7af1783ed8390e8ff477e.tar.gz |
xarchiver: align libexecdir so that thunar-archive-plugin finds tap files
xarchiver installs tap files for thunar-archive-plugin in
$libexexdir/thunar-archive-plugin under the assumption that there is a
single/common $libexexdir for all packages. In bitbake.conf oe-core
sets libexecdir = "${libdir}/${BPN}" which causes thunar-archive-plugin
not to find xarchiver tap-files.
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
Diffstat (limited to 'meta-xfce')
-rw-r--r-- | meta-xfce/recipes-apps/xarchiver/xarchiver_0.5.2.bb | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/meta-xfce/recipes-apps/xarchiver/xarchiver_0.5.2.bb b/meta-xfce/recipes-apps/xarchiver/xarchiver_0.5.2.bb index f47a3bc9ae..6482adcc20 100644 --- a/meta-xfce/recipes-apps/xarchiver/xarchiver_0.5.2.bb +++ b/meta-xfce/recipes-apps/xarchiver/xarchiver_0.5.2.bb | |||
@@ -1,7 +1,7 @@ | |||
1 | DESCRIPTION = "Lightweight, desktop independent GTK+ archive manager" | 1 | DESCRIPTION = "Lightweight, desktop independent GTK+ archive manager" |
2 | HOMEPAGE = "http://xarchiver.sourceforge.net" | 2 | HOMEPAGE = "http://xarchiver.sourceforge.net" |
3 | SECTION = "x11" | 3 | SECTION = "x11" |
4 | PR = "r2" | 4 | PR = "r3" |
5 | 5 | ||
6 | LICENSE = "GPLv2+" | 6 | LICENSE = "GPLv2+" |
7 | LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f" | 7 | LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f" |
@@ -14,4 +14,9 @@ SRC_URI[sha256sum] = "cea932ff9d505969201fd502470bbebbc5726ab3d6765e142fc8295aa6 | |||
14 | 14 | ||
15 | inherit gettext pkgconfig autotools gtk-icon-cache | 15 | inherit gettext pkgconfig autotools gtk-icon-cache |
16 | 16 | ||
17 | # install tap files for thunar-archive-plugin in ${libdir}/thunar-archive-plugin | ||
18 | EXTRA_OECONF += "--libexecdir=${libdir}" | ||
19 | |||
20 | FILES_${PN} += "${libdir}/thunar-archive-plugin" | ||
21 | |||
17 | RRECOMMENDS_${PN} = "lzop zip tar bzip2 unzip" | 22 | RRECOMMENDS_${PN} = "lzop zip tar bzip2 unzip" |