Development

/tags/RELEASE_0_6_2/package.xml.tmpl

You must first sign up to be able to contribute.

root/tags/RELEASE_0_6_2/package.xml.tmpl

Revision 752, 3.1 kB (checked in by fabien, 2 years ago)

upgraded pake dependency

Line 
1 <?xml version="1.0" encoding="UTF-8"?>
2 <package packagerversion="1.4.1" version="2.0" 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" 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">
3  <name>symfony</name>
4  <channel>pear.symfony-project.com</channel>
5  <summary>PHP5 framework.</summary>
6  <description>PHP5 framework.
7  </description>
8  <lead>
9   <name>Fabien POTENCIER</name>
10   <user>fabpot</user>
11   <email>fabien.potencier@symfony-project.com</email>
12   <active>yes</active>
13  </lead>
14  <date>##CURRENT_DATE##</date>
15  <version>
16    <release>##SYMFONY_VERSION##</release>
17    <api>0.7.0</api>
18  </version>
19  <stability>
20   <release>##STABILITY##</release>
21   <api>beta</api>
22  </stability>
23  <license uri="http://www.symfony-project.com/license">MIT license</license>
24  <notes>-</notes>
25  <contents>
26   <dir name="/">
27    <file role="script" baseinstalldir="/" name="bin/symfony.sh">
28     <tasks:replace type="pear-config" from="@PHP-BIN@" to="php_bin"/>
29     <tasks:replace type="pear-config" from="@BIN-DIR@" to="bin_dir"/>
30     <tasks:replace type="pear-config" from="@PEAR-DIR@" to="php_dir"/>
31    </file>
32    <file role="script" baseinstalldir="/" name="bin/symfony.bat">
33     <tasks:replace type="pear-config" from="@PHP-BIN@" to="php_bin"/>
34     <tasks:replace type="pear-config" from="@BIN-DIR@" to="bin_dir"/>
35     <tasks:replace type="pear-config" from="@PEAR-DIR@" to="php_dir"/>
36    </file>
37
38    <file role="php" baseinstalldir="/" install-as="symfony.php" name="bin/symfony.php">
39     <tasks:replace type="pear-config" from="@DATA-DIR@" to="data_dir" />
40     <tasks:replace type="pear-config" from="@PEAR-DIR@" to="php_dir" />
41     <tasks:replace type="package-info" from="@SYMFONY-VERSION@" to="version" />
42    </file>
43
44    ##CLASS_FILES##
45
46    <file role="php" baseinstalldir="symfony" install-as="pear.php" name="lib/pear.php">
47     <tasks:replace type="pear-config" from="@DATA-DIR@" to="data_dir" />
48     <tasks:replace type="pear-config" from="@PEAR-DIR@" to="php_dir" />
49     <tasks:replace type="package-info" from="@SYMFONY-VERSION@" to="version" />
50    </file>
51
52    <file role="doc" baseinstalldir="symfony" name="LICENSE" />
53    <file role="doc" baseinstalldir="symfony" name="UPGRADE" />
54   </dir>
55  </contents>
56  <dependencies>
57   <required>
58    <php>
59     <min>5.0.0</min>
60    </php>
61    <pearinstaller>
62     <min>1.4.1</min>
63    </pearinstaller>
64    <package>
65     <name>pake</name>
66     <channel>pear.symfony-project.com</channel>
67     <min>1.0.93</min>
68    </package>
69   </required>
70  </dependencies>
71
72  <phprelease>
73    <installconditions>
74     <os>
75      <name>windows</name>
76     </os>
77    </installconditions>
78    <filelist>
79     <install as="symfony.bat" name="bin/symfony.bat" />
80     <ignore name="bin/symfony.sh" />
81    </filelist>
82   </phprelease>
83
84   <phprelease>
85    <filelist>
86     <install as="symfony" name="bin/symfony.sh" />
87     <ignore name="bin/symfony.bat" />
88    </filelist>
89   </phprelease>
90
91  <changelog>
92  </changelog>
93 </package>
Note: See TracBrowser for help on using the browser.