net/quagga-unstable: fix compile issue on FreeBSD 8.1
[openwrt/svn-archive/archive.git] / lang / python2-chardet / Makefile
1 #
2 # Copyright (C) 2008-2010 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=python2-chardet
11 PKG_VERSION:=2.0.1
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tgz
15 PKG_SOURCE_URL:=http://chardet.feedparser.org/download/
16 PKG_MD5SUM:=ec771971bab5dd1943a10362ebd2fd4c
17
18 PKG_BUILD_DEPENDS:=python
19
20 include $(INCLUDE_DIR)/package.mk
21 $(call include_mk, python-package.mk)
22
23 define Package/python2-chardet
24 SUBMENU:=Python
25 SECTION:=lang
26 CATEGORY:=Languages
27 TITLE:=Universal Encoding Detector
28 URL:=http://chardet.feedparser.org/
29 DEPENDS:=+python
30 endef
31
32 define Package/python2-chardet/description
33 Character encoding auto-detection in Python.
34 endef
35
36 define Build/Compile
37 $(call Build/Compile/PyMod,,install --prefix="$(PKG_INSTALL_DIR)/usr")
38 endef
39
40 define Package/python2-chardet/install
41 $(INSTALL_DIR) $(1)$(PYTHON_PKG_DIR)
42 $(CP) \
43 $(PKG_INSTALL_DIR)$(PYTHON_PKG_DIR)/* \
44 $(1)$(PYTHON_PKG_DIR)
45 endef
46
47 $(eval $(call BuildPackage,python2-chardet))