source: gs2-extensions/subversion/trunk/src/packages/CASCADE-MAKE/NEON.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: 654 bytes
Line 
1#!/bin/bash
2
3package=neon
4version=-0.28.6
5
6progname=$0
7
8source ../cascade-make/lib/cascade-lib.bash GEXTSVN ../.. $*
9
10prefix=$GEXTSVN_INSTALLED
11
12export CFLAGS="-fPIC $CFLAGS"
13export CPPFLAGS="-fPIC $CPPFLAGS"
14export CXXFLAGS="-fPIC $CXXFLAGS"
15
16opt_run_untar $force_untar $auto_untar $package $version
17opt_run_configure $force_config $auto_config $package $version $prefix --disable-static --enable-shared
18
19opt_run_make $compile $package $version
20opt_run_make $install $package $version "install"
21opt_run_make $clean $package $version "clean"
22opt_run_make $distclean $package $version "distclean"
23
24opt_run_tarclean $tarclean $package $version
25
26
27
28
Note: See TracBrowser for help on using the repository browser.