mirror of
https://github.com/openwrt/packages.git
synced 2025-10-01 03:41:35 +00:00
- New CLI build option - Enable ed25519 by default Release notes: https://github.com/hughsie/libjcat/releases/tag/0.2.3 Signed-off-by: Lukas Voegl <lvoegl@tdt.de>
84 lines
2.3 KiB
Makefile
84 lines
2.3 KiB
Makefile
#
|
|
# Copyright (C) 2024 TDT AG <development@tdt.de>
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See https://www.gnu.org/licenses/gpl-2.0.txt for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=libjcat
|
|
PKG_VERSION:=0.2.3
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
|
|
PKG_SOURCE_URL:=https://github.com/hughsie/libjcat/releases/download/$(PKG_VERSION)
|
|
PKG_HASH:=f2f115aad8a8f16b8dde1ed55de7abacb91d0878539aa29b2b60854b499db639
|
|
|
|
PKG_MAINTAINER:=Lukas Voegl <lvoegl@tdt.de>
|
|
PKG_LICENSE:=LGPL-2.1-or-later
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/nls.mk
|
|
include $(INCLUDE_DIR)/meson.mk
|
|
|
|
define Package/libjcat
|
|
SECTION:=libs
|
|
CATEGORY:=Libraries
|
|
TITLE:=libjcat
|
|
URL:=https://github.com/hughsie/libjcat
|
|
DEPENDS:= \
|
|
+glib2 \
|
|
+json-glib \
|
|
+LIBJCAT_GPG:libgpgme \
|
|
+LIBJCAT_GPG:libgpg-error \
|
|
+LIBJCAT_PKCS7:libgnutls \
|
|
+LIBJCAT_ED25519:libgnutls
|
|
endef
|
|
|
|
define Package/libjcat/description
|
|
libjcat allows reading and writing gzip-compressed JSON catalog files,
|
|
which can be used to store GPG, PKCS-7 and SHA-256 checksums for each file.
|
|
endef
|
|
|
|
define Package/libjcat/config
|
|
source "$(SOURCE)/Config.in"
|
|
endef
|
|
|
|
MESON_ARGS += \
|
|
-Dgtkdoc=false \
|
|
-Dintrospection=false \
|
|
-Dvapi=false \
|
|
-Dtests=false \
|
|
-Dman=false \
|
|
-Dcli=$(if $(CONFIG_LIBJCAT_CLI),true,false) \
|
|
-Dgpg=$(if $(CONFIG_LIBJCAT_GPG),true,false) \
|
|
-Dpkcs7=$(if $(CONFIG_LIBJCAT_PKCS7),true,false) \
|
|
-Ded25519=$(if $(CONFIG_LIBJCAT_ED25519),true,false)
|
|
|
|
define Build/InstallDev
|
|
$(INSTALL_DIR) $(1)/usr/include/libjcat-1
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/include/libjcat-1/jcat.h $(1)/usr/include/libjcat-1/jcat.h
|
|
|
|
$(INSTALL_DIR) $(1)/usr/include/libjcat-1/libjcat
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/include/libjcat-1/libjcat/*.h $(1)/usr/include/libjcat-1/libjcat
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libjcat.so* $(1)/usr/lib
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib/pkgconfig
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/jcat.pc $(1)/usr/lib/pkgconfig
|
|
endef
|
|
|
|
define Package/libjcat/install
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libjcat.so* $(1)/usr/lib
|
|
|
|
$(if $(CONFIG_LIBJCAT_CLI), \
|
|
$(INSTALL_DIR) $(1)/usr/bin; \
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/bin/jcat-tool $(1)/usr/bin)
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,libjcat))
|