mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-26 20:10:35 -09:00
For change log, see [1]. This commit also updates the _SITE to the URL published on the homepage [2]. The main motivation is to use HTTPS. This commit also adds a comment in the hash file about the pgp signature verification. [1] https://gitlab.freedesktop.org/spice/usbredir/-/blob/usbredir-0.14.0/ChangeLog.md [2] https://www.spice-space.org/usbredir.html Signed-off-by: Julien Olivain <ju.o@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
29 lines
832 B
Makefile
29 lines
832 B
Makefile
################################################################################
|
|
#
|
|
# usbredir
|
|
#
|
|
################################################################################
|
|
|
|
USBREDIR_VERSION = 0.14.0
|
|
USBREDIR_SOURCE = usbredir-$(USBREDIR_VERSION).tar.xz
|
|
USBREDIR_SITE = https://www.spice-space.org/download/usbredir
|
|
USBREDIR_LICENSE = LGPL-2.1+ (libraries)
|
|
USBREDIR_LICENSE_FILES = COPYING.LIB
|
|
USBREDIR_INSTALL_STAGING = YES
|
|
USBREDIR_DEPENDENCIES = host-pkgconf libusb
|
|
USBREDIR_CONF_OPTS = \
|
|
-Dgit_werror=disabled \
|
|
-Dstack_protector=disabled \
|
|
-Dtests=disabled
|
|
|
|
ifeq ($(BR2_PACKAGE_USBREDIR_TOOLS),y)
|
|
USBREDIR_LICENSE += , GPL-2.0+ (program)
|
|
USBREDIR_LICENSE_FILES += COPYING
|
|
USBREDIR_DEPENDENCIES += libglib2
|
|
USBREDIR_CONF_OPTS += -Dtools=enabled
|
|
else
|
|
USBREDIR_CONF_OPTS += -Dtools=disabled
|
|
endif
|
|
|
|
$(eval $(meson-package))
|