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.

32 lines
962 B

  1. # This is free software, licensed under the GNU General Public License v2.
  2. # See /LICENSE for more information.
  3. #
  4. include $(TOPDIR)/rules.mk
  5. PKG_NAME:=python-jsonpath-ng
  6. PKG_VERSION:=1.4.3
  7. PKG_RELEASE:=1
  8. PKG_MAINTAINER:=Karel Kočí <cynerd@email.cz>
  9. PKG_SOURCE_URL:=https://pypi.python.org/packages/source/j/jsonpath-ng/
  10. PKG_SOURCE:=jsonpath-ng-$(PKG_VERSION).tar.gz
  11. PKG_HASH:=b1fc75b877e9b2f46845a455fbdcfb0f0d9c727c45c19a745d02db620a9ef0be
  12. PKG_BUILD_DIR:=$(BUILD_DIR)/jsonpath-ng-$(PKG_VERSION)
  13. include $(INCLUDE_DIR)/package.mk
  14. include ../python3-package.mk
  15. define Package/python3-jsonpath-ng
  16. SECTION:=lang
  17. CATEGORY:=Languages
  18. SUBMENU:=Python
  19. URL:=https://github.com/h2non/jsonpath-ng
  20. TITLE:=python3-jsonpath-ng
  21. DEPENDS:=+python3-ply +python3-six +python3-decorator
  22. VARIANT:=python3
  23. endef
  24. $(eval $(call Py3Package,python3-jsonpath-ng))
  25. $(eval $(call BuildPackage,python3-jsonpath-ng))
  26. $(eval $(call BuildPackage,python3-jsonpath-ng-src))