You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
993 B

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