diff options
author | Aleksander Machniak (Kolab Systems) <machniak@kolabsys.com> | 2011-11-18 14:55:08 (GMT) |
---|---|---|
committer | Aleksander Machniak (Kolab Systems) <machniak@kolabsys.com> | 2011-11-18 14:55:08 (GMT) |
commit | 53725a93dd4a7496b92a8fcae7770acecfc04286 (patch) | |
tree | 1ba394ae2c69d37321024ae58c4b26d6d55a9b29 /plugins/kolab_config | |
parent | f007d019831a5b53f49bf63f04eb4efd90dbeea1 (diff) | |
download | roundcubemail-plugins-kolab-53725a93dd4a7496b92a8fcae7770acecfc04286.tar.gz |
Added package.xml files
Diffstat (limited to 'plugins/kolab_config')
-rw-r--r-- | plugins/kolab_config/kolab_config.php | 1 | ||||
-rw-r--r-- | plugins/kolab_config/package.xml | 57 |
2 files changed, 58 insertions, 0 deletions
diff --git a/plugins/kolab_config/kolab_config.php b/plugins/kolab_config/kolab_config.php index 7b0947b..24d569e 100644 --- a/plugins/kolab_config/kolab_config.php +++ b/plugins/kolab_config/kolab_config.php @@ -6,6 +6,7 @@ * Plugin to use Kolab server as a configuration storage. Provides an API to handle * configuration according to http://wiki.kolab.org/KEP:9. * + * @version @package_version@ * @author Machniak Aleksander <machniak@kolabsys.com> * * Copyright (C) 2011, Kolab Systems AG <contact@kolabsys.com> diff --git a/plugins/kolab_config/package.xml b/plugins/kolab_config/package.xml new file mode 100644 index 0000000..73291c8 --- /dev/null +++ b/plugins/kolab_config/package.xml @@ -0,0 +1,57 @@ +<?xml version="1.0" encoding="UTF-8"?> +<package xmlns="http://pear.php.net/dtd/package-2.0" xmlns:tasks="http://pear.php.net/dtd/tasks-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" packagerversion="1.9.0" version="2.0" xsi:schemaLocation="http://pear.php.net/dtd/tasks-1.0 + http://pear.php.net/dtd/tasks-1.0.xsd + http://pear.php.net/dtd/package-2.0 + http://pear.php.net/dtd/package-2.0.xsd"> + <name>kolab_config</name> + <uri>http://kolabsys.com</uri> + <summary>Kolab configuration storage</summary> + <description> + Plugin to use Kolab server as a configuration storage. Provides an API to handle + configuration according to http://wiki.kolab.org/KEP:9. + </description> + <lead> + <name>Aleksander Machniak</name> + <user>machniak</user> + <email>machniak@kolabsys.com</email> + <active>yes</active> + </lead> + <date>2011-11-01</date> + <version> + <release>1.0</release> + <api>1.0</api> + </version> + <stability> + <release>stable</release> + <api>stable</api> + </stability> + <license uri="http://www.gnu.org/licenses/agpl.html">GNU AGPLv3</license> + <notes>-</notes> + <contents> + <dir baseinstalldir="/" name="/"> + <file name="kolab_config.php" role="php"> + <tasks:replace from="@name@" to="name" type="package-info"/> + <tasks:replace from="@package_version@" to="version" type="package-info"/> + </file> + <file name="LICENSE" role="data"></file> + <file name="lib/configuration.php" role="php"></file> + <file name="lib/kolab_configuration.php" role="php"></file> + </dir> + <!-- / --> + </contents> + <dependencies> + <required> + <php> + <min>5.2.1</min> + </php> + <pearinstaller> + <min>1.7.0</min> + </pearinstaller> + <package> + <name>kolab_folders</name> + <uri>http://kolabsys.com</uri> + </package> + </required> + </dependencies> + <phprelease/> +</package> |