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.
22 lines
482 B
22 lines
482 B
var version = "0.8.6-rc1";
|
|
|
|
initInstall( "VideoLAN", "VLC", version, 1);
|
|
|
|
var tmpFolder = getFolder( "Temporary" );
|
|
|
|
if ( ! fileExists( tmpFolder) )
|
|
{
|
|
logComment( "Cannot find Temporary Folder!" );
|
|
cancelInstall();
|
|
}
|
|
|
|
|
|
setPackageFolder( tmpFolder );
|
|
|
|
addFile( "http://downloads.videolan.org/pub/videolan/testing/0.8.6-rc1/win32/vlc-0.8.6-rc1-win32.exe" );
|
|
|
|
var exe = getFolder(tmpFolder, "vlc-0.8.6-rc1-win32.exe");
|
|
File.execute( exe );
|
|
|
|
performInstall();
|
|
|
|
|