changeset 3450:0ecfd051de81

add build-scon.mk file omitted from previous commit
author John W. Eaton <jwe@octave.org>
date Fri, 24 Jan 2014 12:36:20 -0500
parents 36968660f724
children 59ae7d6334c1
files src/build-scons.mk
diffstat 1 files changed, 19 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/build-scons.mk	Fri Jan 24 12:36:20 2014 -0500
@@ -0,0 +1,19 @@
+# This file is part of MXE.
+# See index.html for further information.
+
+PKG             := build-scons
+$(PKG)_IGNORE   :=
+$(PKG)_CHECKSUM := 728edf20047a9f8a537107dbff8d8f803fd2d5e3
+$(PKG)_SUBDIR   := scons-$($(PKG)_VERSION)
+$(PKG)_FILE     := scons-$($(PKG)_VERSION).tar.gz
+$(PKG)_URL      := http://prdownloads.sourceforge.net/scons/$($(PKG)_FILE)
+$(PKG)_DEPS     := build-python
+
+define $(PKG)_UPDATE
+    echo 'Warning: Updates are temporarily disabled for package $(PKG).' >&2;
+    echo $($(PKG)_VERSION)
+endef
+
+define $(PKG)_BUILD
+    cd '$(1)' && python setup.py install
+endef