diff options
author | Andreas Müller <schnitzeltony@gmail.com> | 2019-02-19 23:23:19 +0100 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2019-02-20 11:11:44 -0800 |
commit | d1bdcf1fdf310bc507699c31b4abb3e612ed082c (patch) | |
tree | 56e31ac258cbbf79ffc47a5826e6ffde3b9501ec | |
parent | fa1051bd0883d0588dbab7ed343dd460de0a9b13 (diff) | |
download | meta-openembedded-d1bdcf1fdf310bc507699c31b4abb3e612ed082c.tar.gz |
xarchiver: upgrade to upstream 0.5.4.14
* build with gtk+3
* add 7z support
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-xfce/recipes-apps/xarchiver/xarchiver_git.bb | 21 |
1 files changed, 14 insertions, 7 deletions
diff --git a/meta-xfce/recipes-apps/xarchiver/xarchiver_git.bb b/meta-xfce/recipes-apps/xarchiver/xarchiver_git.bb index a27c8f5531..7445cd7c53 100644 --- a/meta-xfce/recipes-apps/xarchiver/xarchiver_git.bb +++ b/meta-xfce/recipes-apps/xarchiver/xarchiver_git.bb | |||
@@ -5,22 +5,29 @@ SECTION = "x11" | |||
5 | LICENSE = "GPLv2+" | 5 | LICENSE = "GPLv2+" |
6 | LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f" | 6 | LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f" |
7 | 7 | ||
8 | DEPENDS = "gtk+ glib-2.0 xfce4-dev-tools-native intltool-native" | 8 | DEPENDS = "gtk+3 glib-2.0 xfce4-dev-tools-native intltool-native" |
9 | 9 | ||
10 | SRC_URI = "git://github.com/schnitzeltony/xarchiver.git;branch=master" | 10 | SRC_URI = "git://github.com/ib/xarchiver.git" |
11 | SRCREV = "5a26dd8ceab0af71b30c83286d7c7398a858c814" | 11 | SRCREV = "9ab958a4023b62b43972c55a3143ff0722bd88a6" |
12 | PV = "0.5.3" | 12 | PV = "0.5.4.14" |
13 | S = "${WORKDIR}/git" | 13 | S = "${WORKDIR}/git" |
14 | 14 | ||
15 | inherit xfce-git gettext pkgconfig autotools gtk-icon-cache distro_features_check | 15 | inherit gettext pkgconfig autotools gtk-icon-cache distro_features_check |
16 | 16 | ||
17 | REQUIRED_DISTRO_FEATURES = "x11" | 17 | REQUIRED_DISTRO_FEATURES = "x11" |
18 | 18 | ||
19 | # install tap files for thunar-archive-plugin in ${libdir}/thunar-archive-plugin | 19 | # install tap files for thunar-archive-plugin in ${libdir}/thunar-archive-plugin |
20 | EXTRA_OECONF += "--libexecdir=${libdir}" | 20 | EXTRA_OECONF += "--libexecdir=${libdir}" |
21 | 21 | ||
22 | EXTRA_OECONF += "--enable-maintainer-mode" | 22 | EXTRA_OECONF += " \ |
23 | --enable-maintainer-mode \ | ||
24 | --disable-doc \ | ||
25 | " | ||
26 | |||
27 | do_configure_prepend() { | ||
28 | touch ${S}/NEWS ${S}/AUTHORS | ||
29 | } | ||
23 | 30 | ||
24 | FILES_${PN} += "${libdir}/thunar-archive-plugin" | 31 | FILES_${PN} += "${libdir}/thunar-archive-plugin" |
25 | 32 | ||
26 | RRECOMMENDS_${PN} = "lzop zip tar bzip2 unzip xz" | 33 | RRECOMMENDS_${PN} = "lzop zip tar bzip2 unzip xz p7zip" |