Development

/tags/RELEASE_0_4_4/package.xml.tmpl

You must first sign up to be able to contribute.

root/tags/RELEASE_0_4_4/package.xml.tmpl

Revision 251, 2.9 kB (checked in by fabien, 7 years ago)

trap exception in symfony.php (not done anymore in new pake releases)

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.5.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="symfony/pear.php" name="lib/symfony/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    </file>
50
51    <file role="doc" baseinstalldir="symfony" name="LICENSE"/>
52   </dir>
53  </contents>
54  <dependencies>
55   <required>
56    <php>
57     <min>5.0.0</min>
58    </php>
59    <pearinstaller>
60     <min>1.4.1</min>
61    </pearinstaller>
62    <package>
63     <name>pake</name>
64     <channel>pear.symfony-project.com</channel>
65     <min>1.0.80</min>
66    </package>
67   </required>
68  </dependencies>
69
70  <phprelease>
71    <installconditions>
72     <os>
73      <name>windows</name>
74     </os>
75    </installconditions>
76    <filelist>
77     <install as="symfony.bat" name="bin/symfony.bat" />
78     <ignore name="bin/symfony.sh" />
79    </filelist>
80   </phprelease>
81
82   <phprelease>
83    <filelist>
84     <install as="symfony" name="bin/symfony.sh" />
85     <ignore name="bin/symfony.bat" />
86    </filelist>
87   </phprelease>
88
89  <changelog>
90  </changelog>
91 </package>
Note: See TracBrowser for help on using the browser.