mirror of
https://github.com/harish2704/installer-scripts.git
synced 2026-09-10 06:11:08 +00:00
ffmpeg installer
This commit is contained in:
Executable
+14
@@ -0,0 +1,14 @@
|
||||
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';
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user