2 # Copyright (C) 2007-2008 OpenWrt.org
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
8 include $(TOPDIR)/rules.mk
10 PKG_NAME:=MySQL-python
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=@SF/mysql-python
16 PKG_MD5SUM:=532268f02870bea18c1d465e88afff30
18 PKG_BUILD_DEPENDS:=python
20 include $(INCLUDE_DIR)/package.mk
21 -include $(if $(DUMP),,$(STAGING_DIR)/mk/python-package.mk)
23 define Package/python-mysql
27 TITLE:=MySQL database adapter for Python
28 URL:=http://mysql-python.sourceforge.net/
29 DEPENDS:=+python +libmysqlclient
32 define Package/python-mysql/description
33 MySQLdb is an thread-compatible interface to the popular MySQL database
34 server that provides the Python database API.
37 define PyPackage/python-mysql/filespec
38 +|$(PYTHON_PKG_DIR)/_mysql.so
39 +|$(PYTHON_PKG_DIR)/_mysql_exceptions.py*
40 +|$(PYTHON_PKG_DIR)/MySQLdb
44 $(if $(Build/Compile/PyMod),,@echo Python packaging code not found.; false)
45 $(call Build/Compile/PyMod,., \
46 install --prefix="$(PKG_INSTALL_DIR)/usr", \
50 $(eval $(call PyPackage,python-mysql))
51 $(eval $(call BuildPackage,python-mysql))