blob: 18859162a2cd60de34e84447426f4e9b31d49809 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001#
2# Copyright (C) 2015-2018 OpenWrt.org
3#
4# This is free software, licensed under the GNU General Public License v2.
5# See /LICENSE for more information.
6#
7
8include $(TOPDIR)/rules.mk
9
10PKG_NAME:=python-pyasn1-modules
11PKG_VERSION:=0.2.8
12PKG_RELEASE:=2
13
14PYPI_NAME:=pyasn1-modules
15PKG_HASH:=905f84c712230b2c592c19470d3ca8d552de726050d1d1716282a1f6146be65e
16
17PKG_LICENSE:=BSD-2-Clause
18PKG_LICENSE_FILES:=LICENSE.txt
19PKG_MAINTAINER:=Jeffery To <jeffery.to@gmail.com>
20
21include ../pypi.mk
22include $(INCLUDE_DIR)/package.mk
23include ../python3-package.mk
24
25define Package/python3-pyasn1-modules
26 SECTION:=lang
27 CATEGORY:=Languages
28 SUBMENU:=Python
29 TITLE:=Collection of ASN.1 modules
30 URL:=https://github.com/etingof/pyasn1-modules
31 DEPENDS:= \
32 +python3-light \
33 +python3-pyasn1
34endef
35
36define Package/python3-pyasn1-modules/description
37This is a small but growing collection of ASN.1 data structures
38expressed in Python terms using pyasn1 data model.
39endef
40
41$(eval $(call Py3Package,python3-pyasn1-modules))
42$(eval $(call BuildPackage,python3-pyasn1-modules))
43$(eval $(call BuildPackage,python3-pyasn1-modules-src))