31 lines
823 B
Makefile
31 lines
823 B
Makefile
|
################################################################################
|
||
|
#
|
||
|
# uacme
|
||
|
#
|
||
|
################################################################################
|
||
|
|
||
|
UACME_VERSION = 1.0.19
|
||
|
# Released versions are on branch upstream/latest, tagged as
|
||
|
# upstream/X.Y.Z Do not use vX.Y.Z tags from master, as they do not
|
||
|
# include .tarball-version
|
||
|
UACME_SITE = $(call github,ndilieto,uacme,upstream/$(UACME_VERSION))
|
||
|
UACME_LICENSE = GPL-3.0+
|
||
|
UACME_LICENSE_FILES = COPYING
|
||
|
UACME_DEPENDENCIES = libcurl
|
||
|
|
||
|
ifeq ($(BR2_PACKAGE_MBEDTLS),y)
|
||
|
UACME_CONF_OPTS += --with-mbedtls
|
||
|
UACME_DEPENDENCIES += mbedtls
|
||
|
else
|
||
|
UACME_CONF_OPTS += --without-mbedtls
|
||
|
endif
|
||
|
|
||
|
ifeq ($(BR2_PACKAGE_GNUTLS),y)
|
||
|
UACME_CONF_OPTS += --with-gnutls
|
||
|
UACME_DEPENDENCIES += gnutls
|
||
|
else
|
||
|
UACME_CONF_OPTS += --without-gnutls
|
||
|
endif
|
||
|
|
||
|
$(eval $(autotools-package))
|