2020-08-29 08:18:53 +00:00
|
|
|
# Copyright (C) 2020 Paul Spooren <mail@aparcar.org>
|
|
|
|
#
|
2020-08-31 20:55:04 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
2020-08-29 08:18:53 +00:00
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=px5g-wolfssl
|
2021-01-27 02:28:14 +00:00
|
|
|
PKG_RELEASE:=$(COMMITCOUNT)
|
2020-08-29 08:18:53 +00:00
|
|
|
PKG_LICENSE:=GPL-2.0-or-later
|
|
|
|
|
|
|
|
PKG_USE_MIPS16:=0
|
|
|
|
|
|
|
|
PKG_MAINTAINER:=Paul Spooren <mail@aparcar.org>
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/px5g-wolfssl
|
|
|
|
SECTION:=utils
|
|
|
|
CATEGORY:=Utilities
|
|
|
|
SUBMENU:=Encryption
|
2020-08-31 20:55:04 +00:00
|
|
|
TITLE:=X.509 certificate generator (using WolfSSL)
|
2020-08-29 08:18:53 +00:00
|
|
|
DEPENDS:=+libwolfssl
|
|
|
|
PROVIDES:=px5g
|
|
|
|
VARIANT:=wolfssl
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/px5g-wolfssl/description
|
|
|
|
Px5g is a tiny X.509 certificate generator.
|
|
|
|
It suitable to create key files and certificates in DER
|
|
|
|
and PEM format for use with stunnel, uhttpd and others.
|
|
|
|
endef
|
|
|
|
|
|
|
|
TARGET_LDFLAGS += -lwolfssl
|
|
|
|
|
|
|
|
|
|
|
|
TARGET_CFLAGS += -Wl,--gc-sections
|
|
|
|
|
|
|
|
define Build/Compile
|
2020-08-31 20:55:04 +00:00
|
|
|
$(TARGET_CC) $(TARGET_CPPFLAGS) $(TARGET_CFLAGS) \
|
|
|
|
-o $(PKG_BUILD_DIR)/px5g px5g-wolfssl.c $(TARGET_LDFLAGS)
|
2020-08-29 08:18:53 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/px5g-wolfssl/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/px5g $(1)/usr/sbin/px5g
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,px5g-wolfssl))
|