Branch oldpackages for 14.07
[14.07/packages.git] / lang / simplejson / Makefile
1 #
2 # Copyright (C) 2011 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:=simplejson
11 PKG_VERSION:=2.2.1
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=http://pypi.python.org/packages/source/s/simplejson/
16 PKG_MD5SUM:=070c6467462bd63306f1756b01df6d70
17 PKG_BUILD_DEPENDS:=python
18
19 include $(INCLUDE_DIR)/package.mk
20 $(call include_mk, python-package.mk)
21
22 define Package/simplejson
23   SUBMENU:=Python
24   SECTION:=lang
25   CATEGORY:=Languages
26   TITLE:=Simple, fast, extensible JSON encoder/decoder for Python
27   URL:=http://simplejson.readthedocs.org/
28   DEPENDS:=+python +distribute
29 endef
30
31 define Package/simplejson/description
32   Simple, fast, extensible JSON encoder/decoder for Python
33 endef
34
35 define Build/Compile
36         $(call Build/Compile/PyMod,,install --prefix=/usr --root=$(PKG_INSTALL_DIR))
37 endef
38
39 define Package/simplejson/install
40         $(INSTALL_DIR) $(1)$(PYTHON_PKG_DIR)
41         $(CP) \
42             $(PKG_INSTALL_DIR)$(PYTHON_PKG_DIR)/* \
43             $(1)$(PYTHON_PKG_DIR)
44 endef
45
46 $(eval $(call BuildPackage,simplejson))