blob: 5717cf74f2962951cf1e0059f87528a0cbb56c46 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001# This is free software, licensed under the GNU General Public License v2.
2# See /LICENSE for more information.
3
4include $(TOPDIR)/rules.mk
5
6PKG_NAME:=python-pycrate
7PKG_VERSION:=0.6.0
8PKG_RELEASE:=1
9
10PYPI_NAME:=pycrate
11PKG_HASH:=b49738c02a3f93ba9f76c0dac82b689a5341882814b36c714e9600e9f560daf7
12
13PKG_LICENSE:=LGPL-2.1-or-later
14PKG_LICENSE_FILES:=license.txt
15PKG_MAINTAINER:=David Bauer <mail@david-bauer.net>
16
17include ../pypi.mk
18include $(INCLUDE_DIR)/package.mk
19include ../python3-package.mk
20
21define Package/python3-pycrate
22 SECTION:=lang
23 CATEGORY:=Languages
24 SUBMENU:=Python
25 TITLE:=A software suite to handle various data formats
26 URL:=https://github.com/P1sec/pycrate
27 DEPENDS:=+python3-light
28endef
29
30define Package/python3-pycrate/description
31Provides a runtime for encoding and decoding data structures, including CSN.1
32and ASN.1. Additionally, it features a 3G and LTE mobile core network.
33endef
34
35$(eval $(call Py3Package,python3-pycrate))
36$(eval $(call BuildPackage,python3-pycrate))
37$(eval $(call BuildPackage,python3-pycrate-src))