blob: ea64bd719cb7a955865577b0dc4753368a79b1be [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001#
2# This is free software, licensed under the GNU General Public License v2.
3# See /LICENSE for more information.
4#
5
6include $(TOPDIR)/rules.mk
7
8PKG_NAME:=python3-pyinotify
9PKG_VERSION:=0.9.6
10PKG_RELEASE:=1
11
12PYPI_NAME:=pyinotify
13PKG_HASH:=9c998a5d7606ca835065cdabc013ae6c66eb9ea76a00a1e3bc6e0cfe2b4f71f4
14
15PKG_MAINTAINER:=Gerald Kerma <gandalf@gk2.net>
16PKG_LICENSE:=MIT
17PKG_LICENSE_FILES:=COPYING
18
19include ../pypi.mk
20include $(INCLUDE_DIR)/package.mk
21include ../python3-package.mk
22
23define Package/python3-pyinotify
24 SUBMENU:=Python
25 SECTION:=lang
26 CATEGORY:=Languages
27 TITLE:=Linux filesystem events monitoring
28 URL:=https://github.com/seb-m/pyinotify
29 DEPENDS:= +python3-light \
30 +python3-ctypes \
31 +python3-logging
32endef
33
34define Package/python3-pyinotify/description
35 Pyinotify is a Python module for monitoring filesystems changes.
36endef
37
38$(eval $(call Py3Package,python3-pyinotify))
39$(eval $(call BuildPackage,python3-pyinotify))
40$(eval $(call BuildPackage,python3-pyinotify-src))