Changeset 303
- Timestamp:
- 08/05/08 23:04:28 (4 years ago)
- Location:
- trunk
- Files:
-
- 4 modified
-
README (modified) (1 diff)
-
makepkg.php (modified) (2 diffs)
-
trax/vendor/trax/inflector.php (modified) (1 diff)
-
trax/vendor/trax/trax.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/README
r285 r303 26 26 * FreeBSD, Unix, Linux, MacOSX, Windows 27 27 28 == Building & Installing PHPonTrax PEAR Module 29 From the commandline run the following command: 30 php makepkg.php 31 After that runs it will make a build folder with the PEAR module called: 32 PHPonTrax-<version>.tgz 33 To install this newly generated PEAR module run the following command: 34 pear install -a PHPonTrax-<version>.tgz 35 If you have a previously installed version exists first run: 36 pear uninstall PHPonTrax 37 28 38 == Getting Started 29 39 http://wiki.phpontrax.com/How_do_I_install/upgrade_Trax%3F -
trunk/makepkg.php
r302 r303 44 44 * @version $Id$ 45 45 */ 46 47 48 chdir("./trax/"); 46 49 47 50 require_once('PEAR/PackageFileManager2.php'); … … 149 152 } 150 153 154 // Move files into a build folder and clean up files 155 chdir(".."); 156 if(!is_dir("build")) { 157 mkdir("build"); 158 } 159 rename("./trax/PHPonTrax-".$trax_version.".tgz", "build/PHPonTrax-".$trax_version.".tgz"); 160 unlink("./trax/package.xml"); 161 151 162 // -- set Emacs parameters -- 152 163 // Local variables: -
trunk/trax/vendor/trax/inflector.php
r276 r303 30 30 31 31 32 include_once( TRAX_LIB_ROOT . "/inflections.php");32 include_once("inflections.php"); 33 33 34 34 /** -
trunk/trax/vendor/trax/trax.php
r301 r303 37 37 const 38 38 MAJOR = 0, 39 MINOR = 1 4,40 TINY = 1;39 MINOR = 15, 40 TINY = 0; 41 41 42 42 public static
