source: gs2-extensions/subversion/trunk/src/packages/CASCADE-MAKE/SUBVERSION.sh@ 23376

Last change on this file since 23376 was 23376, checked in by sjm84, 13 years ago

Added openssl to the packages for SVN, this is mainly due to difficulty compiling on x86-64 linux where several of the libraries needed to be compiled with -fPIC including libcrypto (part of openssl)

  • Property svn:executable set to *
File size: 725 bytes
RevLine 
[23043]1#!/bin/bash
2
3package=subversion
4version=-1.6.13
5
6progname=$0
7
[23094]8source ../cascade-make/lib/cascade-lib.bash GEXTSVN ../.. $*
[23043]9
10prefix=$GEXTSVN_INSTALLED
11
[23376]12export CFLAGS="-I$prefix/include $CFLAGS"
13export CXXFLAGS="-I$prefix/include $CXXFLAGS"
14export CPPFLAGS="-I$prefix/include $CPPFLAGS"
15export LDFLAGS="-L$prefix/lib $LDFLAGS"
16
[23043]17opt_run_untar $force_untar $auto_untar $package $version
18opt_run_configure $force_config $auto_config $package $version $prefix --with-sqlite=$prefix
19
20opt_run_make $compile $package $version
21opt_run_make $install $package $version "install"
22opt_run_make $clean $package $version "clean"
23opt_run_make $distclean $package $version "distclean"
24
25opt_run_tarclean $tarclean $package $version
26
27
28
29
Note: See TracBrowser for help on using the repository browser.