scons: fix compatibility with python 3, upstream still does not support it...
[openwrt/staging/yousong.git] / tools / scons / 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:=scons
11 PKG_VERSION:=2.1.0
12
13 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
14 PKG_SOURCE_URL:=@SF/scons
15 PKG_MD5SUM:=47daf989e303a045b76c11236df719df
16
17 include $(INCLUDE_DIR)/host-build.mk
18
19 define Host/Configure
20 endef
21
22 define Host/Compile
23 endef
24
25 define Host/Install
26 python $(HOST_BUILD_DIR)/setup.py install --prefix=$(STAGING_DIR_HOST)
27 endef
28
29 $(eval $(call HostBuild))