Merge pull request #4832 from dedeckeh/pr-coap

libcoap: add coap client and server packages and update libcoap to 1.4.2
This commit is contained in:
Hannu Nyman 2017-09-21 19:53:26 +03:00 committed by GitHub
commit e2513afdaa

View file

@ -8,14 +8,15 @@
include $(TOPDIR)/rules.mk include $(TOPDIR)/rules.mk
PKG_NAME:=libcoap PKG_NAME:=libcoap
PKG_RELEASE:=3 PKG_VERSION:=v4.1.2
PKG_RELEASE:=1
PKG_SOURCE_PROTO:=git PKG_SOURCE_PROTO:=git
PKG_SOURCE_URL:=https://github.com/obgm/libcoap PKG_SOURCE_URL:=https://github.com/obgm/libcoap
PKG_SOURCE_SUBDIR:=$(PKG_NAME) PKG_SOURCE_SUBDIR:=$(PKG_NAME)
PKG_SOURCE_VERSION:=2da31de732c0e51a9bc9e1d4aea21e25da89cf87 PKG_SOURCE_VERSION:=fa5248603049ddf95cc84608aad569120763bf2b
PKG_SOURCE:=$(PKG_NAME)-$(PKG_SOURCE_VERSION).tar.bz2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
PKG_MIRROR_HASH:=b61fe3245a329dfcf198187149d2072509b18ca6e348d0b423c0f44d11e930e4 PKG_MIRROR_HASH:=0ab4bc9569a78904743cc3074fd1c0fc9c78c85fd510fef5145dd872523619e6
PKG_MAINTAINER:=Anton Glukhov <anton.a.glukhov@gmail.com> PKG_MAINTAINER:=Anton Glukhov <anton.a.glukhov@gmail.com>
PKG_LICENSE:=GPL-2.0+ BSD-2-Clause PKG_LICENSE:=GPL-2.0+ BSD-2-Clause
@ -39,10 +40,32 @@ define Package/libcoap/description
Constrained Application Protocol (RFC 7252) library Constrained Application Protocol (RFC 7252) library
endef endef
define Package/coap-client
SECTION:=utils
CATEGORY:=Utilities
DEPENDS:=+libcoap
TITLE:=CoAP (RFC 7252) client tool
endef
define Package/coap-client/description
Constrained Application Protocol (RFC7252) client tool
endef
define Package/coap-server
SECTION:=net
CATEGORY:=Network
DEPENDS:=+libcoap
TITLE:=CoAP (RFC 7252) server programs
endef
define Package/coap-server/description
Constrained Application Protocol (RFC 7252) server and resource directory server
endef
TARGET_CFLAGS += $(FPIC) TARGET_CFLAGS += $(FPIC)
CONFIGURE_ARGS += \ CONFIGURE_ARGS += \
--disable-examples \ --enable-examples \
--disable-documentation --disable-documentation
ifeq ($(CONFIG_BIG_ENDIAN),y) ifeq ($(CONFIG_BIG_ENDIAN),y)
@ -62,4 +85,17 @@ define Package/libcoap/install
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libcoap-1.so* $(1)/usr/lib/ $(CP) $(PKG_INSTALL_DIR)/usr/lib/libcoap-1.so* $(1)/usr/lib/
endef endef
define Package/coap-client/install
$(INSTALL_DIR) $(1)/usr/bin
$(CP) $(PKG_INSTALL_DIR)/usr/bin/coap-client $(1)/usr/bin/
endef
define Package/coap-server/install
$(INSTALL_DIR) $(1)/usr/bin
$(CP) $(PKG_INSTALL_DIR)/usr/bin/coap-server $(1)/usr/bin/
$(CP) $(PKG_INSTALL_DIR)/usr/bin/coap-rd $(1)/usr/bin/
endef
$(eval $(call BuildPackage,libcoap)) $(eval $(call BuildPackage,libcoap))
$(eval $(call BuildPackage,coap-client))
$(eval $(call BuildPackage,coap-server))