Revision 22996, 0.6 KB
(checked in by sjm84, 9 years ago)
|
Committing the contents of the MySQL extension
|
-
Property svn:executable set to
*
|
Line | |
---|
1 | #!/bin/bash |
---|
2 | |
---|
3 | package=mysql |
---|
4 | version=-5.1.47 |
---|
5 | |
---|
6 | progname=$0 |
---|
7 | |
---|
8 | source ../cascade-make/lib/cascade-lib.bash |
---|
9 | |
---|
10 | prefix= |
---|
11 | if [ "x$GEXTAMP_INSTALLED" = "x" ] ; then |
---|
12 | prefix=$GEXTMYSQL_INSTALLED |
---|
13 | else |
---|
14 | prefix=$GEXTAMP_INSTALLED |
---|
15 | fi |
---|
16 | |
---|
17 | opt_run_untar $force_untar $auto_untar $package $version |
---|
18 | opt_run_configure $force_config $auto_config $package $version $prefix --exec-prefix=$prefix |
---|
19 | |
---|
20 | opt_run_make $compile $package $version |
---|
21 | opt_run_make $install $package $version "install" |
---|
22 | opt_run_make $clean $package $version "clean" |
---|
23 | opt_run_make $distclean $package $version "distclean" |
---|
24 | |
---|
25 | opt_run_tarclean $tarclean $package $version |
---|
26 | |
---|
27 | |
---|
28 | |
---|
29 | |
---|