egroupware_official/egw-pear/setup/setup.inc.php

45 lines
1.5 KiB
PHP
Raw Normal View History

2014-07-09 19:51:10 +02:00
<?php
/**
* EGroupware - modified PEAR modules
*
* @link http://www.egroupware.org
* @package egw-pear
* @subpackage setup
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
* @version $Id$
*/
$setup_info['egw-pear']['name'] = 'egw-pear';
$setup_info['egw-pear']['title'] = 'egw-pear';
$setup_info['egw-pear']['version'] = '14.1';
$setup_info['egw-pear']['app_order'] = 99;
$setup_info['egw-pear']['enable'] = 0; // no need to show anywhere in EGroupware
$setup_info['egw-pear']['author'] = array(
'name' => 'PEAR - PHP Extension and Application Repository',
'url' => 'http://pear.php.net',
);
$setup_info['egw-pear']['license'] = 'PHP';
$setup_info['egw-pear']['description'] =
'A place for PEAR modules modified for eGroupWare.';
$setup_info['egw-pear']['note'] =
'This application is a place for PEAR modules used by eGroupWare, which are NOT YET available from pear,
because we patched them somehow and the PEAR modules are not released upstream.
This application is under the LGPL license because the GPL is not compatible with the PHP license.
If the modules are available from PEAR they do NOT belong here anymore.';
$setup_info['egw-pear']['maintainer'] = array(
'name' => 'eGroupWare coreteam',
'email' => 'egroupware-developers@lists.sourceforge.net',
);
// installation checks for egw-pear
$setup_info['egw-pear']['check_install'] = array(
// we need pear itself to be installed
'' => array(
'func' => 'pear_check',
'from' => 'FMail',
),
);