You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.0 KiB

  1. #
  2. # Copyright (C) 2017-2020 CZ.NIC, z. s. p. o. (https://www.nic.cz/)
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=python-msgpack
  9. PKG_VERSION:=1.0.2
  10. PKG_RELEASE:=1
  11. PYPI_NAME:=msgpack
  12. PKG_HASH:=fae04496f5bc150eefad4e9571d1a76c55d021325dcd484ce45065ebbdd00984
  13. PKG_MAINTAINER:=Jan Pavlinec <jan.pavlinec1@gmail.com>
  14. PKG_LICENSE:=Apache-2.0
  15. PKG_LICENSE_FILES:=COPYING
  16. include ../pypi.mk
  17. include $(INCLUDE_DIR)/package.mk
  18. include ../python3-package.mk
  19. define Package/python3-msgpack
  20. SUBMENU:=Python
  21. SECTION:=lang
  22. CATEGORY:=Languages
  23. TITLE:=MessagePack (de)serializer
  24. URL:=https://msgpack.org/
  25. DEPENDS:=+python3-light +libstdcpp
  26. endef
  27. define Package/python3-msgpack/description
  28. MessagePack is an efficient binary serialization format.
  29. It lets you exchange data among multiple languages like JSON.
  30. endef
  31. $(eval $(call Py3Package,python3-msgpack))
  32. $(eval $(call BuildPackage,python3-msgpack))
  33. $(eval $(call BuildPackage,python3-msgpack-src))