コード例 #1
0
ファイル: package.php プロジェクト: rludvik/phpfreechat
$phpi->ignore[] = '/fanwork/';
$phpi->ignore[] = 'tests';
echo '<pre>';
//template files
if (!$phpi->addMetaFile('ss', '../createinstaller/data/installer.css', 'text/css', $replace)) {
    $phpi->message('Could not add installer.css to installer.');
    die('</pre>');
}
$phpi->addPath(realpath(dirname(__FILE__) . "/.."));
$phpi->addPage('Pre-installation Check', file_get_contents('../createinstaller/data/precheck.inc'));
//generate the license page
//first try to add the license file, than the license page
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.');
    die('</pre>');
}
//add the unknown image
if (!$phpi->addMetaFile('unknown', '../createinstaller/data/unknown.gif', 'image/gif')) {
    $phpi->message('The unknown status image could not be added.');
    die('</pre>');
}
if (!$phpi->addMetaFile('hb', '../createinstaller/data/installer.jpg', 'image/jpeg')) {
    $phpi->message('An image installer.jpg could not be added.');
    die('</pre>');
}
$phpi->addInstallerPages();
$phpi->generate('../tests/installer.beta-5.1.php');
$phpi->generateTarGz('../tests/installer.beta-5.1.tar.gz');
echo '</pre>';
コード例 #2
0
ファイル: page.build.php プロジェクト: rludvik/phpfreechat
        $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();
$phpi->generate(RESULTFILE);
echo '<a href="?download">download</a>';
echo '</pre></div>';
コード例 #3
0
<?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);