1
mirror of https://code.videolan.org/videolan/vlc synced 2024-10-03 01:31:53 +02:00
vlc/projects/mozilla/install.js
Pierre d'Herbemont 2e888fde24 Source Tree Layout Cleanup: (As decided at videolan-meeting #2)
projects/ - contains projects that link to libvlc other than vlc and the bindings.
    extras/package - contains the packaging specific files.
    extras/deprecated - deprecated files.
    extras/buildsystem - contains non-default buildsystem stuff.
    extras/analyser - contains code analyser (such as editor specific files) specific files.
2008-02-04 01:17:33 +00:00

23 lines
482 B
JavaScript
Executable File

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();