mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-04 06:10:16 +03:00
- change download url to https (as given by the original announcement [1]
and redirected by the http url)
Fixes:
- http://autobuild.buildroot.net/results/84ad38933e4f42b74c3185c8c5e777fd714c9601
>>> wayland-utils 1.0.0 Downloading[27m
--2020-09-14 13:53:35-- http://wayland.freedesktop.org/releases/wayland-utils-1.0.0.tar.xz
Resolving wayland.freedesktop.org (wayland.freedesktop.org)... 35.227.58.183
Connecting to wayland.freedesktop.org (wayland.freedesktop.org)|35.227.58.183|:80... connected.
HTTP request sent, awaiting response... 308 Permanent Redirect
2020-09-14 13:53:35 ERROR 308: Permanent Redirect.
[1] https://lists.freedesktop.org/archives/wayland-devel/2020-July/041565.html
Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15 lines
504 B
Makefile
15 lines
504 B
Makefile
################################################################################
|
|
#
|
|
# wayland-utils
|
|
#
|
|
################################################################################
|
|
|
|
WAYLAND_UTILS_VERSION = 1.0.0
|
|
WAYLAND_UTILS_SITE = https://wayland.freedesktop.org/releases
|
|
WAYLAND_UTILS_SOURCE = wayland-utils-$(WAYLAND_UTILS_VERSION).tar.xz
|
|
WAYLAND_UTILS_LICENSE = MIT
|
|
WAYLAND_UTILS_LICENSE_FILES = COPYING
|
|
WAYLAND_UTILS_DEPENDENCIES = host-pkgconf wayland wayland-protocols
|
|
|
|
$(eval $(meson-package))
|