source: gs2-extensions/subversion/trunk/src/packages/CASCADE-MAKE/OPENSSL.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: 621 bytes
Line 
1#!/bin/bash
2
3package=openssl
4version=-1.0.0b
5
6progname=$0
7
8source ../cascade-make/lib/cascade-lib.bash GEXTSVN ../.. $*
9
10prefix=$GEXTSVN_INSTALLED
11
12opt_run_untar $force_untar $auto_untar $package $version
13
14#opt_run_configure $force_config $auto_config $package $version $prefix
15if [ $force_config = 1 ] ; then
16 (cd $package$version ; ./config --prefix=$prefix shared)
17fi
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.