Revert "jose: remove libjose"
This reverts commit 02d6c8346c
.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
parent
d70538c43c
commit
a546f26ddb
1 changed files with 20 additions and 6 deletions
|
@ -19,15 +19,20 @@ PKG_MAINTAINER:=Tibor Dudlák <tibor.dudlak@gmail.com>
|
||||||
PKG_LICENSE:=Apache-2.0
|
PKG_LICENSE:=Apache-2.0
|
||||||
PKG_LICENSE_FILES:=COPYING
|
PKG_LICENSE_FILES:=COPYING
|
||||||
|
|
||||||
PKG_BUILD_DEPENDS:=openssl
|
|
||||||
|
|
||||||
include $(INCLUDE_DIR)/package.mk
|
include $(INCLUDE_DIR)/package.mk
|
||||||
include $(INCLUDE_DIR)/meson.mk
|
include $(INCLUDE_DIR)/meson.mk
|
||||||
|
|
||||||
|
define Package/libjose
|
||||||
|
SECTION:=libs
|
||||||
|
TITLE:=Provides a full crypto stack including key generation, signing and encryption.
|
||||||
|
DEPENDS:=+zlib +jansson +libopenssl +libpthread
|
||||||
|
URL:=https://github.com/latchset/jose
|
||||||
|
endef
|
||||||
|
|
||||||
define Package/jose
|
define Package/jose
|
||||||
SECTION:=utils
|
SECTION:=utils
|
||||||
TITLE:=Provides a full crypto stack including key generation, signing and encryption.
|
TITLE:=Provides a full crypto stack including key generation, signing and encryption.
|
||||||
DEPENDS:=+jansson
|
DEPENDS:=+libjose
|
||||||
URL:=https://github.com/latchset/jose
|
URL:=https://github.com/latchset/jose
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
@ -37,22 +42,31 @@ define Package/jose/description
|
||||||
crypto stack including key generation, signing and encryption.
|
crypto stack including key generation, signing and encryption.
|
||||||
endef
|
endef
|
||||||
|
|
||||||
MESON_ARGS += \
|
define Package/libjose/description
|
||||||
-Ddefault_library=static
|
libjose is a library for performing various tasks on JSON
|
||||||
|
Object Signing and Encryption (JOSE) objects. José provides a full
|
||||||
|
crypto stack including key generation, signing and encryption.
|
||||||
|
endef
|
||||||
|
|
||||||
define Build/InstallDev
|
define Build/InstallDev
|
||||||
$(INSTALL_DIR) $(1)/usr/lib
|
$(INSTALL_DIR) $(1)/usr/lib
|
||||||
$(INSTALL_DIR) $(1)/usr/include
|
$(INSTALL_DIR) $(1)/usr/include
|
||||||
$(INSTALL_DIR) $(1)/usr/include/$(PKG_NAME)
|
$(INSTALL_DIR) $(1)/usr/include/$(PKG_NAME)
|
||||||
$(INSTALL_DIR) $(1)/usr/lib/pkgconfig
|
$(INSTALL_DIR) $(1)/usr/lib/pkgconfig
|
||||||
$(CP) $(PKG_INSTALL_DIR)/usr/lib/lib$(PKG_NAME).a $(1)/usr/lib
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/lib$(PKG_NAME).so* $(1)/usr/lib
|
||||||
$(CP) $(PKG_INSTALL_DIR)/usr/include/$(PKG_NAME)/*.h $(1)/usr/include/$(PKG_NAME)
|
$(CP) $(PKG_INSTALL_DIR)/usr/include/$(PKG_NAME)/*.h $(1)/usr/include/$(PKG_NAME)
|
||||||
$(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/*.pc $(1)/usr/lib/pkgconfig
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/*.pc $(1)/usr/lib/pkgconfig
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
define Package/libjose/install
|
||||||
|
$(INSTALL_DIR) $(1)/usr/lib
|
||||||
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/lib$(PKG_NAME).so* $(1)/usr/lib/
|
||||||
|
endef
|
||||||
|
|
||||||
define Package/jose/install
|
define Package/jose/install
|
||||||
$(INSTALL_DIR) $(1)/usr/bin
|
$(INSTALL_DIR) $(1)/usr/bin
|
||||||
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/$(PKG_NAME) $(1)/usr/bin/
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/$(PKG_NAME) $(1)/usr/bin/
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
$(eval $(call BuildPackage,libjose))
|
||||||
$(eval $(call BuildPackage,jose))
|
$(eval $(call BuildPackage,jose))
|
||||||
|
|
Loading…
Reference in a new issue