Beispiel #1
0
    var_export($v);
    if (isset($v['url']) && isset($v['path'])) {
        //$phpi->generatedata($v['path']);
        $phpi->addPathDownload($v['url'], $v['to']);
    } else {
        if (isset($v['url'])) {
            $phpi->addPathDownload($v['url'], $v['to'], $v['type']);
        } else {
            if (isset($v['path'])) {
                $phpi->addPath($v['path'], $v['to']);
            }
        }
    }
}
//$phpi->addPath(gpv('rootpath'));
$phpi->addPage('Pre-installation Check', file_get_contents('createinstaller/data/precheck.inc'));
//license page
if (gpv('step_license')) {
    if ($phpi->addMetaFile('license', 'createinstaller/data/license.html', 'text/html')) {
        $phpi->addPage('License', file_get_contents('createinstaller/data/license.inc'), array(), array('disabled' => true));
    } else {
        $phpi->message('The license could not be added. Check the file ' . $lPath . '.');
    }
}
if (!$phpi->addMetaFile('unknown', 'createinstaller/data/unknown.gif', 'image/gif')) {
    $phpi->message('The license could not be added. Check the file ' . $lPath . '.');
}
if (!$phpi->addMetaFile('hb', 'createinstaller/data/installer.jpg', 'image/jpeg')) {
    $phpi->message('The license could not be added. Check the file ' . $lPath . '.');
}
$phpi->addInstallerPages();
<?php

$version = isset($_SERVER["argv"][1]) ? $_SERVER["argv"][1] : file_get_contents(dirname(__FILE__) . "/../version");
$archivename = 'phpfreechat-' . $version . '-setup.php';
$pfcpath = dirname(__FILE__) . '/phpfreechat-' . $version;
if (!file_exists($pfcpath)) {
    die("Dont find the directory {$pfcpath}");
}
$phpinstaller_path = realpath(dirname(__FILE__) . '/../contrib/installer.beta-5.1');
include $phpinstaller_path . '/engine.inc.php';
$phpi = new phpInstaller();
$phpi->dataDir($phpinstaller_path . '/engine_data');
$phpi->appName = 'phpFreeChat';
$phpi->appVersion = $version;
$phpi->addMetaFile('ss', $phpinstaller_path . '/createinstaller/data/installer.css', 'text/css') or die('Can not find stylesheet');
$phpi->ignore[] = '.svn';
$phpi->addPage('Pre-Install Check', file_get_contents($phpinstaller_path . '/createinstaller/data/precheck.inc'));
$phpi->addInstallerPages();
$phpi->addPath($pfcpath);
$phpi->generate($archivename);