# # Copyright (C) 2019-2020 redwax.eu # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. # include $(TOPDIR)/rules.mk PKG_NAME:=redwax-apache-mod-csr PKG_VERSION:=0.2.2 PKG_RELEASE:=1 PKG_SOURCE_NAME:=mod_csr PKG_MAINTAINER:=Graham Leggett PKG_LICENSE:=Apache License PKG_SOURCE:=$(PKG_SOURCE_NAME)-$(PKG_VERSION).tar.bz2 PKG_SOURCE_URL:=https://archive.redwax.eu/dist/rs/$(PKG_SOURCE_NAME)/$(PKG_SOURCE_NAME)-$(PKG_VERSION)/ PKG_HASH:=b8a1bd19b02cc2a87ff790b0d6c1b4d2b936c151eca1694dd2292d109e034f76 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_SOURCE_NAME)-$(PKG_VERSION) PKG_INSTALL:=1 PKG_CONFIG_DEPENDS := \ CONFIG_PACKAGE_redwax-apache-mod-ca include $(INCLUDE_DIR)/package.mk define Package/redwax-apache-mod-csr/Default SECTION:=security CATEGORY:=Security SUBMENU:=Certificate Authorities TITLE:=Redwax mod_csr Module URL:=https://redwax.eu/ endef define Package/redwax-apache-mod-csr $(call Package/redwax-apache-mod-csr/Default) DEPENDS:=+apache +libopenssl +redwax-apache-mod-ca endef define Package/redwax-apache-mod-csr/description $(call Package/redwax-apache-mod-csr/Default/description) The Apache mod_csr module issues a certificate in response to an incoming certificate sign request.. endef TARGET_CPPFLAGS += -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE TARGET_LDFLAGS += -lpthread define Build/Configure $(call Build/Configure/Default, \ --with-apxs="$(STAGING_DIR)/usr/bin/apxs" \ ap_cv_void_ptr_lt_long=no \ EXTRA_LIBS="-ldl -lpthread -lcrypto -lrt -lssl" \ DESTDIR="$(PKG_INSTALL_DIR)" \ ) endef define Package/redwax-apache-mod-csr/install $(INSTALL_DIR) $(1)/usr/lib/apache2 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/lib/apache2/*.so \ $(1)/usr/lib/apache2 endef $(eval $(call BuildPackage,redwax-apache-mod-csr))