initial buildroot for linux 5.15
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
config BR2_PACKAGE_NGIRCD
|
||||
bool "ngircd"
|
||||
depends on BR2_USE_MMU # fork()
|
||||
help
|
||||
Next Generation IRC server deamon.
|
||||
|
||||
http://ngircd.barton.de
|
||||
@@ -0,0 +1,3 @@
|
||||
# Locally calculated after checking pgp signature
|
||||
sha256 55c16fd26009f6fc6a007df4efac87a02e122f680612cda1ce26e17a18d86254 ngircd-26.1.tar.xz
|
||||
sha256 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643 COPYING
|
||||
@@ -0,0 +1,41 @@
|
||||
################################################################################
|
||||
#
|
||||
# ngircd
|
||||
#
|
||||
################################################################################
|
||||
|
||||
NGIRCD_VERSION = 26.1
|
||||
NGIRCD_SOURCE = ngircd-$(NGIRCD_VERSION).tar.xz
|
||||
NGIRCD_SITE = https://arthur.barton.de/pub/ngircd
|
||||
NGIRCD_LICENSE = GPL-2.0+
|
||||
NGIRCD_LICENSE_FILES = COPYING
|
||||
NGIRCD_CPE_ID_VENDOR = barton
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LINUX_PAM),y)
|
||||
NGIRCD_CONF_OPTS += --with-pam=$(STAGING_DIR)/usr
|
||||
NGIRCD_DEPENDENCIES += linux-pam
|
||||
else
|
||||
NGIRCD_CONF_OPTS += --without-pam
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
||||
NGIRCD_CONF_OPTS += --with-openssl
|
||||
NGIRCD_DEPENDENCIES += host-pkgconf openssl
|
||||
else
|
||||
NGIRCD_CONF_OPTS += --without-openssl
|
||||
ifeq ($(BR2_PACKAGE_GNUTLS),y)
|
||||
NGIRCD_CONF_OPTS += --with-gnutls=$(STAGING_DIR)/usr
|
||||
NGIRCD_DEPENDENCIES += gnutls
|
||||
else
|
||||
NGIRCD_CONF_OPTS += --without-gnutls
|
||||
endif
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_ZLIB),y)
|
||||
NGIRCD_CONF_OPTS += --with-zlib=$(STAGING_DIR)/usr
|
||||
NGIRCD_DEPENDENCIES += zlib
|
||||
else
|
||||
NGIRCD_CONF_OPTS += --without-zlib
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user