blob: 6d4ded9cf49674f7a9512372850d0e5a178de35b [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-crcmod
7PKG_VERSION:=1.7
8PKG_RELEASE:=2
9
10PYPI_NAME:=crcmod
11PKG_HASH:=dc7051a0db5f2bd48665a990d3ec1cc305a466a77358ca4492826f41f283601e
12
13PKG_LICENSE:=MIT
14PKG_MAINTAINER:=David Bauer <mail@david-bauer.net>
15
16include ../pypi.mk
17include $(INCLUDE_DIR)/package.mk
18include ../python3-package.mk
19
20define Package/python3-crcmod
21 SECTION:=lang
22 CATEGORY:=Languages
23 SUBMENU:=Python
24 TITLE:=python3-crcmod
25 URL:=http://crcmod.sourceforge.net/
26 DEPENDS:=+python3-light
27endef
28
29define Package/python3-crcmod/description
30The software in this package is a Python module for generating
31objects that compute the Cyclic Redundancy Check (CRC).
32endef
33
34$(eval $(call Py3Package,python3-crcmod))
35$(eval $(call BuildPackage,python3-crcmod))
36$(eval $(call BuildPackage,python3-crcmod-src))