diff options
author | James <> | 2013-03-17 12:16:37 +0000 |
---|---|---|
committer | James <> | 2013-03-17 12:16:37 +0000 |
commit | 27b76ab0671089c47506615a796a261e993896a7 (patch) | |
tree | 61213d67e7fa87b20356b23798558e2c4212c42f /tools/scons/.svn | |
download | trunk-36060-master.tar.gz trunk-36060-master.tar.bz2 trunk-36060-master.zip |
Diffstat (limited to 'tools/scons/.svn')
-rw-r--r-- | tools/scons/.svn/entries | 68 | ||||
-rw-r--r-- | tools/scons/.svn/text-base/Makefile.svn-base | 34 |
2 files changed, 102 insertions, 0 deletions
diff --git a/tools/scons/.svn/entries b/tools/scons/.svn/entries new file mode 100644 index 0000000..10b5422 --- /dev/null +++ b/tools/scons/.svn/entries @@ -0,0 +1,68 @@ +10 + +dir +36060 +svn://svn.openwrt.org/openwrt/trunk/tools/scons +svn://svn.openwrt.org/openwrt + + + +2012-05-15T20:29:32.846704Z +31743 +jow + + + + + + + + + + + + + + +3c298f89-4303-0410-b956-a3cf2f4a3e73 + +files +dir + +patches +dir + +Makefile +file + + + + +2013-03-17T12:13:23.000000Z +f0c5724d342dac53a0801e217dffa796 +2012-05-15T20:04:07.059115Z +31742 +jow + + + + + + + + + + + + + + + + + + + + + +752 + diff --git a/tools/scons/.svn/text-base/Makefile.svn-base b/tools/scons/.svn/text-base/Makefile.svn-base new file mode 100644 index 0000000..83c1c58 --- /dev/null +++ b/tools/scons/.svn/text-base/Makefile.svn-base @@ -0,0 +1,34 @@ +# +# Copyright (C) 2011 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# + +include $(TOPDIR)/rules.mk + +PKG_NAME:=scons +PKG_VERSION:=2.1.0 + +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +PKG_SOURCE_URL:=@SF/scons +PKG_MD5SUM:=47daf989e303a045b76c11236df719df + +include $(INCLUDE_DIR)/host-build.mk + +define Host/Configure +endef + +define Host/Compile +endef + +define Host/Install + ./files/pywrap.sh $(HOST_BUILD_DIR)/setup.py install --prefix=$(STAGING_DIR_HOST) + rm -f $(STAGING_DIR_HOST)/bin/scons*.py + for bin in $(STAGING_DIR_HOST)/bin/scons*; do \ + mv "$$$$bin" "$$$$bin.py"; \ + cp ./files/pywrap.sh "$$$$bin"; \ + done +endef + +$(eval $(call HostBuild)) |