source: gs2-extensions/subversion/trunk/src/packages/CASCADE-MAKE/OPENSSL.sh@ 35468

Last change on this file since 35468 was 35468, checked in by davidb, 3 years ago

Updated to newer version of openssl to work with newer versions of gcc; also changed install target to be 'install_sw' as this skips installing all the doc/man pages, which we don't need

  • Property svn:executable set to *
File size: 641 bytes
Line 
1#!/bin/bash
2
3package=openssl
4#version=-1.0.0b
5version=-1.1.1k
6
7progname=$0
8
9source ../cascade-make/lib/cascade-lib.bash GEXTSVN ../.. $*
10
11prefix=$GEXTSVN_INSTALLED
12
13opt_run_untar $force_untar $auto_untar $package $version
14
15#opt_run_configure $force_config $auto_config $package $version $prefix
16if [ $force_config = 1 ] ; then
17 (cd $package$version ; ./config --prefix=$prefix shared)
18fi
19
20opt_run_make $compile $package $version
21opt_run_make $install $package $version "install_sw"
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.