forked from sheetjs/sheetjs
		
	- BIFF5 write number formats and other features - XLSX/XLSB/BIFF8 Suppress "Number stored as Text" errors - codename awareness (fixes #992 h/t @samusstrike) - updated CFB to 1.0.3 - demo refresh
		
			
				
	
	
		
			17 lines
		
	
	
		
			382 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			382 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
DUKTAPE_VER=2.2.0
 | 
						|
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
 | 
						|
 |