You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
344 B
14 lines
344 B
export appName='ffmpeg-2.7.1-64bit-static';
|
|
export installationPath="$appDir/$appName";
|
|
|
|
downloadPack(){
|
|
wget -c 'http://johnvansickle.com/ffmpeg/releases/ffmpeg-release-64bit-static.tar.xz';
|
|
}
|
|
|
|
installPack(){
|
|
tar -xJvf 'ffmpeg-release-64bit-static.tar.xz';
|
|
cd "$appName";
|
|
find ./ -maxdepth 1 -type f -executable > 'binaries.lst';
|
|
}
|
|
|
|
|
|
|