d31447bce4
usbredirserver was dropped by
f4ffdce329
Add an option to enable tools (and usbredirect binary) as a replacement
to usbredirserver
https://gitlab.freedesktop.org/spice/usbredir/-/blob/usbredir-0.13.0/ChangeLog.md
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
29 lines
827 B
Makefile
29 lines
827 B
Makefile
################################################################################
|
|
#
|
|
# usbredir
|
|
#
|
|
################################################################################
|
|
|
|
USBREDIR_VERSION = 0.13.0
|
|
USBREDIR_SOURCE = usbredir-$(USBREDIR_VERSION).tar.xz
|
|
USBREDIR_SITE = http://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))
|