This commit is contained in:
2015-07-12 18:23:01 +05:30
parent d9fe5fdcfa
commit 8f62fb263f
4 changed files with 43 additions and 9 deletions
+18
View File
@@ -0,0 +1,18 @@
#!/usr/bin/env bash
. $(dirname $(readlink -f $0))/installer_common;
export appName='node-v0.12.7-linux-x64';
export installationPath="$appDir/$appName";
downloadPack(){
wget -c 'https://nodejs.org/dist/v0.12.7/node-v0.12.7-linux-x64.tar.gz';
}
installPack(){
tar -xzvf 'node-v0.12.7-linux-x64.tar.gz';
cd "$appName";
find ./bin -type f -or -type l -executable > 'binaries.lst';
}
mainInstaller;