mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 14:13:16 +00:00
9c272dd3e4
e4bd927 cast ucert_argv to proper type when passing to execv Fixes warnings: warning: passing argument 2 of 'execv' from incompatible pointer type [-Wincompatible-pointer-types] 254 | execv(usign_argv[0], usign_argv) Signed-off-by: Daniel Golle <daniel@makrotopia.org>
72 lines
1.6 KiB
Makefile
72 lines
1.6 KiB
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=ucert
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL=$(PROJECT_GIT)/project/ucert.git
|
|
PKG_SOURCE_DATE:=2019-11-29
|
|
PKG_SOURCE_VERSION:=e4bd927cc7c756de5f3005824b63a7a6d827e1ee
|
|
PKG_MIRROR_HASH:=cc6853e861110dd89cc8bd909c5f02150c2c3f9a77de66017393515644a7ac36
|
|
|
|
CMAKE_INSTALL:=1
|
|
PKG_CHECK_FORMAT_SECURITY:=1
|
|
|
|
PKG_LICENSE:=GPL-3.0+
|
|
PKG_LICENSE_FILES:=COPYING
|
|
|
|
PKG_MAINTAINER:=Daniel Golle <daniel@makrotopia.org>
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/host-build.mk
|
|
include $(INCLUDE_DIR)/cmake.mk
|
|
|
|
CMAKE_HOST_OPTIONS += \
|
|
-DUCERT_FULL=1 \
|
|
-DUCERT_HOST_BUILD=1 \
|
|
-DCMAKE_SKIP_RPATH=FALSE \
|
|
-DUSE_RPATH="${STAGING_DIR_HOST}/lib"
|
|
|
|
HOST_BUILD_DEPENDS:=libubox/host libjson-c/host usign/host
|
|
HOST_BUILD_PREFIX:=$(STAGING_DIR_HOST)
|
|
PKG_BUILD_DEPENDS:=ucert/host
|
|
|
|
define Package/ucert-full
|
|
SECTION:=base
|
|
CATEGORY:=Base system
|
|
DEPENDS:=+usign +libubox +libjson-c +libblobmsg-json
|
|
TITLE:=OpenWrt certificate generation and verification utility
|
|
PROVIDES:=ucert
|
|
VARIANT:=full
|
|
endef
|
|
|
|
define Package/ucert
|
|
SECTION:=base
|
|
CATEGORY:=Base system
|
|
DEPENDS:=+usign +libubox
|
|
TITLE:=OpenWrt certificate verification utility
|
|
PROVIDES:=ucert
|
|
CONFLICTS:=ucert-full
|
|
VARIANT:=tiny
|
|
endef
|
|
|
|
ifeq ($(BUILD_VARIANT),full)
|
|
CMAKE_OPTIONS += -DUCERT_FULL=1
|
|
endif
|
|
|
|
define Build/Prepare
|
|
mkdir -p $(PKG_BUILD_DIR)
|
|
$(call Build/Prepare/Default)
|
|
endef
|
|
|
|
define Package/ucert/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/ucert $(1)/usr/bin
|
|
endef
|
|
|
|
Package/ucert-full/install = $(Package/ucert/install)
|
|
|
|
$(eval $(call BuildPackage,ucert))
|
|
$(eval $(call BuildPackage,ucert-full))
|
|
$(eval $(call HostBuild))
|