23 lines
		
	
	
		
			338 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			338 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #/bin/bash
 | |
| 
 | |
| if [ $# -lt 1 ]
 | |
| then
 | |
|     echo "Usage: $0 SRC"
 | |
|     exit 1
 | |
| fi
 | |
| 
 | |
| src=$1
 | |
| 
 | |
| if [ "$PWD" != "$src" ]
 | |
| then
 | |
|     # Copy sources to working directory
 | |
|     cp -r -t $PWD/maxctrl $src/maxctrl/*
 | |
|     cp -r -t $PWD/ $src/VERSION*.cmake
 | |
| fi
 | |
| 
 | |
| cd $PWD/maxctrl
 | |
| 
 | |
| npm install
 | |
| npm install pkg@4.3.4
 | |
| node_modules/pkg/lib-es5/bin.js -t node6-linux-x64 .
 | 
