|
Revision 905, 468 bytes
(checked in by moo, 11 months ago)
|
|
import auto build scripts
|
| Rev | Line | |
|---|
| [905] | 1 | #!/bin/sh |
|---|
| 2 | # vim:syntax=sh |
|---|
| 3 | |
|---|
| 4 | snapshotCount=8 |
|---|
| 5 | |
|---|
| 6 | setExtOutputDir() { |
|---|
| 7 | extOutputDir="$1" |
|---|
| 8 | snapshotOutputDir="$extOutputDir/snapshots" |
|---|
| 9 | releaseOutputDir="$extOutputDir/Releases" |
|---|
| 10 | } |
|---|
| 11 | |
|---|
| 12 | topdir="$PWD" |
|---|
| 13 | develDir="$topdir/php-devel" |
|---|
| 14 | buildDir="$topdir/build" |
|---|
| 15 | sourceDir="$topdir/php-src" |
|---|
| 16 | scriptsDir="$topdir/scripts" |
|---|
| 17 | |
|---|
| 18 | mirror="cn.php.net" |
|---|
| 19 | |
|---|
| 20 | phpVersions=(5.1.6 5.2.17 5.3.13 5.4.3) |
|---|
| 21 | arches=(x86 x64) |
|---|
| 22 | compilers=(VC6 VC9) |
|---|
| 23 | exts=(xcache) |
|---|
| 24 | |
|---|
| 25 | outputDir="$HOME/pub" |
|---|
| 26 | setExtOutputDir "$outputDir/???" |
|---|