Development

/tools/pake/trunk/package.xml.tmpl

You must first sign up to be able to contribute.

root/tools/pake/trunk/package.xml.tmpl

Revision 1765, 2.5 kB (checked in by fabien, 2 years ago)

imported pake project

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>pake</name>
4  <channel>pear.symfony-project.com</channel>
5  <summary>Build system with capabilities similar to make.</summary>
6  <description>Build system with capabilities similar to make.
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>##PAKE_VERSION##</release>
17    <api>1.0.0</api>
18  </version>
19  <stability>
20   <release>stable</release>
21   <api>stable</api>
22  </stability>
23  <license uri="http://www.pake-project.com/license">MIT license</license>
24   <notes>-</notes>
25  <contents>
26   <dir name="/">
27    <file role="script" baseinstalldir="/" name="bin/pake.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/pake.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="pake.php" name="bin/pake.php"/>
39    <file role="php" baseinstalldir="pake" install-as="pakeApp.class.php" name="lib/pake/pakeApp.class.php">
40     <tasks:replace type="package-info" from="1.0.DEV" to="version"/>
41    </file>
42
43    ##CLASS_FILES##
44
45    <file role="doc" baseinstalldir="pake" name="LICENSE"/>
46   </dir>
47  </contents>
48  <dependencies>
49   <required>
50    <php>
51     <min>5.0.0</min>
52    </php>
53    <pearinstaller>
54     <min>1.4.1</min>
55    </pearinstaller>
56   </required>
57  </dependencies>
58
59  <phprelease>
60    <installconditions>
61     <os>
62      <name>windows</name>
63     </os>
64    </installconditions>
65    <filelist>
66     <install as="pake.bat" name="bin/pake.bat" />
67     <ignore name="bin/pake.sh" />
68    </filelist>
69   </phprelease>
70
71   <phprelease>
72    <filelist>
73     <install as="pake" name="bin/pake.sh" />
74     <ignore name="bin/pake.bat" />
75    </filelist>
76   </phprelease>
77
78  <changelog>
79  </changelog>
80 </package>
Note: See TracBrowser for help on using the browser.