initial buildroot for linux 5.15
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
################################################################################
|
||||
#
|
||||
# libstrophe
|
||||
#
|
||||
################################################################################
|
||||
|
||||
LIBSTROPHE_VERSION = 0.11.0
|
||||
LIBSTROPHE_SOURCE = libstrophe-$(LIBSTROPHE_VERSION).tar.xz
|
||||
LIBSTROPHE_SITE = https://github.com/strophe/libstrophe/releases/download/$(LIBSTROPHE_VERSION)
|
||||
LIBSTROPHE_DEPENDENCIES = host-pkgconf
|
||||
LIBSTROPHE_LICENSE = MIT or GPL-3.0
|
||||
LIBSTROPHE_LICENSE_FILES = MIT-LICENSE.txt GPL-LICENSE.txt
|
||||
LIBSTROPHE_INSTALL_STAGING = YES
|
||||
|
||||
ifeq ($(BR2_PACKAGE_EXPAT),y)
|
||||
LIBSTROPHE_CONF_OPTS += --without-libxml2
|
||||
LIBSTROPHE_DEPENDENCIES += expat
|
||||
else
|
||||
LIBSTROPHE_CONF_OPTS += --with-libxml2
|
||||
LIBSTROPHE_DEPENDENCIES += libxml2
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
||||
LIBSTROPHE_CONF_OPTS += --with-tls --without-gnutls
|
||||
LIBSTROPHE_DEPENDENCIES += openssl
|
||||
else
|
||||
LIBSTROPHE_CONF_OPTS += --with-gnutls --without-tls
|
||||
LIBSTROPHE_DEPENDENCIES += gnutls
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user