forked from sheetjs/sheetjs
SheetJS
f03e32fc9a
- frameworks: react, react-native, preact, next.js, weex, nuxt.js - deployments: nodejs server, duktape, chakra, electron, nw.js
18 lines
383 B
Bash
Executable File
18 lines
383 B
Bash
Executable File
#!/bin/bash
|
|
DUKTAPE_VER=2.1.1
|
|
if [ ! -e duktape-$DUKTAPE_VER ]; then
|
|
if [ ! -e duktape-$DUKTAPE_VER.tar ]; then
|
|
if [ ! -e duktape-$DUKTAPE_VER.tar.xz ]; then
|
|
curl -O http://duktape.org/duktape-$DUKTAPE_VER.tar.xz
|
|
fi
|
|
xz -d duktape-$DUKTAPE_VER.tar.xz
|
|
fi
|
|
tar -xf duktape-$DUKTAPE_VER.tar
|
|
fi
|
|
|
|
for f in duktape.{c,h} duk_config.h; do
|
|
cp duktape-$DUKTAPE_VER/src/$f .
|
|
done
|
|
|
|
|