Files
packages/lang/python/python-msgpack/Makefile
2025-11-25 13:38:44 +02:00

47 lines
1.1 KiB
Makefile

#
# Copyright (C) 2017-2020 CZ.NIC, z. s. p. o. (https://www.nic.cz/)
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=python-msgpack
PKG_VERSION:=1.1.2
PKG_RELEASE:=1
PYPI_NAME:=msgpack
PKG_HASH:=3b60763c1373dd60f398488069bcdc703cd08a711477b5d480eecc9f9626f47e
PKG_MAINTAINER:=Jan Pavlinec <jan.pavlinec1@gmail.com>
PKG_LICENSE:=Apache-2.0
PKG_LICENSE_FILES:=COPYING
PKG_BUILD_DEPENDS:= \
python3/host \
python-setuptools/host \
python-cython/host
include ../pypi.mk
include $(INCLUDE_DIR)/package.mk
include ../python3-package.mk
define Package/python3-msgpack
SUBMENU:=Python
SECTION:=lang
CATEGORY:=Languages
TITLE:=MessagePack serializer
URL:=https://msgpack.org/
DEPENDS:=+python3-light +libstdcpp
endef
define Package/python3-msgpack/description
MessagePack is an efficient binary serialization format.
It lets you exchange data among multiple languages like JSON.
endef
$(eval $(call Py3Package,python3-msgpack))
$(eval $(call BuildPackage,python3-msgpack))
$(eval $(call BuildPackage,python3-msgpack-src))