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.

50 lines
1.3 KiB

  1. #
  2. # Copyright (C) 2007-2014 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:=MySQL-python
  9. PKG_VERSION:=1.2.5
  10. PKG_RELEASE:=1
  11. PKG_LICENSE:=GPL-2.0
  12. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).zip
  13. PKG_SOURCE_URL:=https://pypi.python.org/packages/source/M/MySQL-python/
  14. PKG_MD5SUM:=654f75b302db6ed8dc5a898c625e030c
  15. PKG_BUILD_DEPENDS:=python python-setuptools libmysqlclient
  16. include $(INCLUDE_DIR)/package.mk
  17. $(call include_mk, python-package.mk)
  18. define Package/python-mysql
  19. SUBMENU:=Python
  20. SECTION:=lang
  21. CATEGORY:=Languages
  22. TITLE:=MySQL database adapter for Python
  23. URL:=https://pypi.python.org/pypi/MySQL-python
  24. MAINTAINER:=Gergely Kiss <mail.gery@gmail.com>
  25. DEPENDS:=+python +libmysqlclient
  26. endef
  27. define Package/python-mysql/description
  28. MySQLdb is an thread-compatible interface to the popular MySQL database
  29. server that provides the Python database API.
  30. endef
  31. define Build/Compile
  32. $(call Build/Compile/PyMod,,install --prefix=/usr --root=$(PKG_INSTALL_DIR))
  33. endef
  34. define Package/python-mysql/install
  35. $(INSTALL_DIR) $(1)$(PYTHON_PKG_DIR)
  36. $(CP) \
  37. $(PKG_INSTALL_DIR)$(PYTHON_PKG_DIR)/* \
  38. $(1)$(PYTHON_PKG_DIR)
  39. endef
  40. $(eval $(call BuildPackage,python-mysql))