summaryrefslogtreecommitdiffstats
path: root/meta-xfce/classes/xfce.bbclass
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2025-07-11 18:35:23 -0700
committerKhem Raj <raj.khem@gmail.com>2025-07-12 13:50:01 -0700
commitb4f3c4665ca45ac5c4347d4cd5d7547c50af9ae5 (patch)
treee18333809a0fdf5ac3474fe59c6badb337d45e6a /meta-xfce/classes/xfce.bbclass
parentadfee75882d492cb64300e9abab884cd7bbf37e4 (diff)
downloadmeta-openembedded-b4f3c4665ca45ac5c4347d4cd5d7547c50af9ae5.tar.gz
classed/xfce: Make download tarball extention type configurable
Default is still tar.bz2, but there is now option to use tar.xz which is some of new xfce component releases are only xz compressed tarballs. Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-xfce/classes/xfce.bbclass')
-rw-r--r--meta-xfce/classes/xfce.bbclass3
1 files changed, 2 insertions, 1 deletions
diff --git a/meta-xfce/classes/xfce.bbclass b/meta-xfce/classes/xfce.bbclass
index 913202be59..6b3d0b0d0f 100644
--- a/meta-xfce/classes/xfce.bbclass
+++ b/meta-xfce/classes/xfce.bbclass
@@ -4,7 +4,8 @@ def xfce_verdir(v):
4 return "%s.%s" % (m.group(1), m.group(2)) 4 return "%s.%s" % (m.group(1), m.group(2))
5 5
6HOMEPAGE = "http://www.xfce.org" 6HOMEPAGE = "http://www.xfce.org"
7SRC_URI = "http://archive.xfce.org/src/xfce/${BPN}/${@xfce_verdir("${PV}")}/${BPN}-${PV}.tar.bz2" 7XFCE_COMPRESS_TYPE ?= "bz2"
8SRC_URI = "http://archive.xfce.org/src/xfce/${BPN}/${@xfce_verdir("${PV}")}/${BPN}-${PV}.tar.${XFCE_COMPRESS_TYPE}"
8 9
9inherit autotools gettext gtk-icon-cache pkgconfig 10inherit autotools gettext gtk-icon-cache pkgconfig
10 11