From a17eab663b0ec03c9cc082137f046b1ec26dc4b6 Mon Sep 17 00:00:00 2001 From: Hugo Locurcio Date: Wed, 13 Jun 2018 18:19:49 +0200 Subject: [PATCH] Add SCons version 3.0.1 (#2299) As SCons cannot be cleanly installed using `pip install` (especially on Python 3), this is a more reliable installation method that is just as easy to use as pip. --- scons.json | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 scons.json diff --git a/scons.json b/scons.json new file mode 100644 index 0000000000..bf6d1fe1f4 --- /dev/null +++ b/scons.json @@ -0,0 +1,22 @@ +{ + "homepage": "https://scons.org/", + "description": "A software construction tool", + "license": "MIT", + "version": "3.0.1", + "url": "https://downloads.sourceforge.net/project/scons/scons-local/3.0.1/scons-local-3.0.1.zip", + "hash": "4ab1f274015287744a497dcbd522ff1446f28d3de9aad630aac37042a16f7bde", + "pre_install": "echo \"python $dir\\scons.py @args\" | out-file $dir\\scons.ps1", + "bin": [ + "scons.ps1" + ], + "suggest": { + "Python": "python" + }, + "checkver": { + "url": "https://scons.org/pages/download.html", + "re": "The current production release of SCons is ([\\d.]+)" + }, + "autoupdate": { + "url": "https://downloads.sourceforge.net/project/scons/scons-local/$version/scons-local-$version.zip" + } +}