b.liu | e958203 | 2025-04-17 19:18:16 +0800 | [diff] [blame^] | 1 | # |
| 2 | # This is free software, licensed under the GNU General Public License v2. |
| 3 | # See /LICENSE for more information. |
| 4 | # |
| 5 | |
| 6 | include $(TOPDIR)/rules.mk |
| 7 | |
| 8 | PKG_NAME:=python3-pyinotify |
| 9 | PKG_VERSION:=0.9.6 |
| 10 | PKG_RELEASE:=1 |
| 11 | |
| 12 | PYPI_NAME:=pyinotify |
| 13 | PKG_HASH:=9c998a5d7606ca835065cdabc013ae6c66eb9ea76a00a1e3bc6e0cfe2b4f71f4 |
| 14 | |
| 15 | PKG_MAINTAINER:=Gerald Kerma <gandalf@gk2.net> |
| 16 | PKG_LICENSE:=MIT |
| 17 | PKG_LICENSE_FILES:=COPYING |
| 18 | |
| 19 | include ../pypi.mk |
| 20 | include $(INCLUDE_DIR)/package.mk |
| 21 | include ../python3-package.mk |
| 22 | |
| 23 | define 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 |
| 32 | endef |
| 33 | |
| 34 | define Package/python3-pyinotify/description |
| 35 | Pyinotify is a Python module for monitoring filesystems changes. |
| 36 | endef |
| 37 | |
| 38 | $(eval $(call Py3Package,python3-pyinotify)) |
| 39 | $(eval $(call BuildPackage,python3-pyinotify)) |
| 40 | $(eval $(call BuildPackage,python3-pyinotify-src)) |