this repo has no description
at trunk 26 lines 631 B view raw
1#!/bin/sh 2set -eux 3PREV="$(pwd)" 4DIR="$(mktemp -d)" 5cp scrapscript.py "$DIR" 6cp compiler.py "$DIR" 7cp runtime.c "$DIR" 8cp cli.c "$DIR" 9cd "$DIR" 10printf -- '-m\nscrapscript\n...' > .args 11wget https://cosmo.zip/pub/cosmos/bin/python 12wget https://cosmo.zip/pub/cosmos/bin/zip 13chmod +x python 14chmod +x zip 15./python -m compileall -b scrapscript.py compiler.py 16mkdir Lib 17cp scrapscript.pyc Lib/scrapscript.pyc 18cp compiler.pyc Lib/compiler.pyc 19cp runtime.c Lib/runtime.c 20cp cli.c Lib/cli.c 21cp python scrapscript.com 22./zip -r scrapscript.com Lib .args 23echo "Testing..." 24./scrapscript.com apply "1+2" 25cd "$PREV" 26cp "$DIR"/scrapscript.com .