mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
Merge from bittboy/buildroot@26c91a9
This commit is contained in:
36
package/uacme/uacme.mk
Normal file
36
package/uacme/uacme.mk
Normal file
@@ -0,0 +1,36 @@
|
||||
################################################################################
|
||||
#
|
||||
# uacme
|
||||
#
|
||||
################################################################################
|
||||
|
||||
UACME_VERSION = 1.4.1
|
||||
# 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
|
||||
|
||||
UACME_CONF_ENV = ac_cv_prog_cc_c99='-std=gnu99'
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GNUTLS),y)
|
||||
UACME_CONF_OPTS += --with-gnutls
|
||||
UACME_DEPENDENCIES += gnutls
|
||||
else ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
||||
UACME_CONF_OPTS += --with-openssl
|
||||
UACME_DEPENDENCIES += openssl
|
||||
else ifeq ($(BR2_PACKAGE_MBEDTLS),y)
|
||||
UACME_CONF_OPTS += --with-mbedtls
|
||||
UACME_DEPENDENCIES += mbedtls
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_UACME_UALPN),y)
|
||||
UACME_DEPENDENCIES += libev
|
||||
UACME_CONF_OPTS += --with-ualpn
|
||||
else
|
||||
UACME_CONF_OPTS += --without-ualpn
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user