2017-06-29 21:08:11 +02:00
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# rauc
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
2019-06-11 19:33:57 +02:00
|
|
|
RAUC_VERSION = 1.1
|
2017-06-29 21:08:11 +02:00
|
|
|
RAUC_SITE = https://github.com/rauc/rauc/releases/download/v$(RAUC_VERSION)
|
|
|
|
RAUC_SOURCE = rauc-$(RAUC_VERSION).tar.xz
|
|
|
|
RAUC_LICENSE = LGPL-2.1
|
2019-06-11 19:33:58 +02:00
|
|
|
RAUC_LICENSE_FILES = COPYING
|
2017-06-29 21:08:11 +02:00
|
|
|
RAUC_DEPENDENCIES = host-pkgconf openssl libglib2
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_RAUC_NETWORK),y)
|
|
|
|
RAUC_CONF_OPTS += --enable-network
|
|
|
|
RAUC_DEPENDENCIES += libcurl
|
|
|
|
else
|
|
|
|
RAUC_CONF_OPTS += --disable-network
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_RAUC_JSON),y)
|
|
|
|
RAUC_CONF_OPTS += --enable-json
|
|
|
|
RAUC_DEPENDENCIES += json-glib
|
|
|
|
else
|
|
|
|
RAUC_CONF_OPTS += --disable-json
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_SYSTEMD),y)
|
|
|
|
# configure uses pkg-config --variable=systemdsystemunitdir systemd
|
|
|
|
RAUC_DEPENDENCIES += systemd
|
|
|
|
endif
|
|
|
|
|
2019-02-23 03:23:51 +01:00
|
|
|
HOST_RAUC_DEPENDENCIES = \
|
|
|
|
host-pkgconf \
|
|
|
|
host-openssl \
|
|
|
|
host-libglib2 \
|
|
|
|
host-squashfs \
|
|
|
|
$(if $(BR2_PACKAGE_HOST_LIBP11),host-libp11)
|
2017-06-29 21:08:11 +02:00
|
|
|
HOST_RAUC_CONF_OPTS += --disable-network --disable-json --disable-service
|
|
|
|
|
|
|
|
$(eval $(autotools-package))
|
|
|
|
$(eval $(host-autotools-package))
|