Makefile 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. #
  2. # Copyright (C) 2015 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=gmpy
  9. PKG_VERSION:=1.17
  10. PKG_RELEASE:=1
  11. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).zip
  12. PKG_SOURCE_URL:=https://pypi.python.org/packages/source/g/gmpy
  13. PKG_MD5SUM:=2bf419076b06e107167e219f60ac6d27
  14. PKG_LICENSE:=LGPL-2.1+
  15. PKG_LICENSE_FILES:=lgpl-2.1.txt
  16. PKG_MAINTAINER:=Jeffery To <jeffery.to@gmail.com>
  17. include $(INCLUDE_DIR)/package.mk
  18. $(call include_mk, python-package.mk)
  19. define Package/python-gmpy
  20. SECTION:=lang
  21. CATEGORY:=Languages
  22. SUBMENU:=Python
  23. TITLE:=python-gmpy
  24. URL:=http://code.google.com/p/gmpy/
  25. DEPENDS:=+libgmp +python-light
  26. endef
  27. define Package/python-gmpy/description
  28. gmpy is a C-coded Python extension module that provides access to the
  29. GMP (or MPIR) multiple-precision arithmetic library.
  30. endef
  31. define Build/Compile
  32. $(call Build/Compile/PyMod,,install --prefix="/usr" --root="$(PKG_INSTALL_DIR)")
  33. endef
  34. $(eval $(call PyPackage,python-gmpy))
  35. $(eval $(call BuildPackage,python-gmpy))