Message ID | 20250712172646.3899204-3-raj.khem@gmail.com |
---|---|
State | New |
Headers | show |
Series | [meta-xfce,v2,1/6] classed/xfce: Make download tarball extention type configurable | expand |
diff --git a/meta-xfce/classes/xfce.bbclass b/meta-xfce/classes/xfce.bbclass index 6b3d0b0d0f..21136742c5 100644 --- a/meta-xfce/classes/xfce.bbclass +++ b/meta-xfce/classes/xfce.bbclass @@ -7,7 +7,10 @@ HOMEPAGE = "http://www.xfce.org" XFCE_COMPRESS_TYPE ?= "bz2" SRC_URI = "http://archive.xfce.org/src/xfce/${BPN}/${@xfce_verdir("${PV}")}/${BPN}-${PV}.tar.${XFCE_COMPRESS_TYPE}" -inherit autotools gettext gtk-icon-cache pkgconfig +inherit gettext gtk-icon-cache pkgconfig + +XFCEBASEBUILDCLASS ??= "autotools" +inherit_defer ${XFCEBASEBUILDCLASS} DEPENDS += "intltool-native"
Default to autotools to keep the present defaults working, it allows building xfce components with meson, many of newer releases of xfce components are using meson Signed-off-by: Khem Raj <raj.khem@gmail.com> --- meta-xfce/classes/xfce.bbclass | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-)