mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-27 20:07:25 +00:00
561e0e911f
While using devtool to check available versions, I noticed a 301 http error.
Specifically :
$ devtool latest-version libxfce4ui
Resolving archive.xfce.org (archive.xfce.org)... 217.70.191.87
Connecting to archive.xfce.org (archive.xfce.org)|217.70.191.87|:80... connected
.
HTTP request sent, awaiting response... 301 Moved Permanently
Location: https://archive.xfce.org/src/xfce/libxfce4ui/4.20/ [following]
With this patch, we change to make the SRC_URI an https request.
A similar patch is already in master - commit 8089168196
Signed-off-by: Jason Schonberg <schonm@gmail.com>
Signed-off-by: Anuj Mittal <anuj.mittal@oss.qualcomm.com>
28 lines
886 B
BlitzBasic
28 lines
886 B
BlitzBasic
SUMMARY = "Xfce4 development tools"
|
|
HOMEPAGE = "http://www.xfce.org"
|
|
SECTION = "x11/libs"
|
|
LICENSE = "GPL-2.0-or-later"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
|
|
|
|
DEPENDS = "glib-2.0"
|
|
DEPENDS:append:class-target = " ${BPN}-native"
|
|
|
|
SRC_URI = "https://archive.xfce.org/src/xfce/${BPN}/${@'${PV}'[0:4]}/${BPN}-${PV}.tar.bz2 \
|
|
file://0001-m4macros-Check-for-a-function-provided-by-libX11-in-.patch \
|
|
"
|
|
SRC_URI:append:class-target = " file://0001-Run-native-xdt-csource-on-tests.patch"
|
|
SRC_URI[sha256sum] = "eedb4fc955f0e3459c46864ff98579295db2b900743e0ff69cad5970ba76be37"
|
|
|
|
inherit autotools pkgconfig
|
|
|
|
do_install:append() {
|
|
install -d ${D}${datadir}/aclocal
|
|
install -m 644 ${S}/m4macros/*.m4 ${D}${datadir}/aclocal/
|
|
}
|
|
|
|
FILES:${PN} += "${datadir}/xfce4/dev-tools/m4macros/*.m4"
|
|
|
|
RDEPENDS:${PN} = "bash"
|
|
|
|
BBCLASSEXTEND = "native"
|