[backfire/packages] merge r28429
[openwrt/svn-archive/archive.git] / lang / pyyaml / Makefile
1 #
2 # Copyright (C) 2008 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:=PyYAML
11 PKG_VERSION:=3.08
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=http://pyyaml.org/download/pyyaml/
16 PKG_MD5SUM:=a4163a2017fa57f448c66815511fa555
17
18 PKG_BUILD_DEPENDS:=python
19
20 include $(INCLUDE_DIR)/package.mk
21 $(call include_mk, python-package.mk)
22
23 define Package/pyyaml
24 SUBMENU:=Python
25 SECTION:=lang
26 CATEGORY:=Languages
27 TITLE:=pyyaml
28 URL:=http://pyyaml.org
29 DEPENDS:=+python +libyaml
30 endef
31
32 define Package/pyyaml/description
33 yaml python bindings
34 endef
35
36 define Build/Compile
37 $(call Build/Compile/PyMod,,--with-libyaml install --prefix="$(PKG_INSTALL_DIR)/usr")
38 endef
39
40 define Package/pyyaml/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,pyyaml))