1*ebfedea0SLionel Sambuc#!/bin/sh 2*ebfedea0SLionel Sambuc 3*ebfedea0SLionel Sambucmajor="0" 4*ebfedea0SLionel Sambucminor="9.7b" 5*ebfedea0SLionel Sambuc 6*ebfedea0SLionel Sambucslib=libssl 7*ebfedea0SLionel Sambucsh_slib=$slib.so.$major.$minor 8*ebfedea0SLionel Sambuc 9*ebfedea0SLionel Sambucclib=libcrypto 10*ebfedea0SLionel Sambucsh_clib=$clib.so.$major.$minor 11*ebfedea0SLionel Sambuc 12*ebfedea0SLionel Sambuc# If you want them in /usr/local/lib then change INSTALLTOP to point there. 13*ebfedea0SLionel Sambuc#INSTALLTOP=/usr/local/ssl/lib 14*ebfedea0SLionel SambucINSTALLTOP=/usr/local/lib 15*ebfedea0SLionel Sambuc 16*ebfedea0SLionel Sambuccp -p $sh_clib $INSTALLTOP 17*ebfedea0SLionel Sambuccp -p $sh_slib $INSTALLTOP 18*ebfedea0SLionel Sambuc 19*ebfedea0SLionel SambucPWD=`pwd` 20*ebfedea0SLionel Sambuccd $INSTALLTOP 21*ebfedea0SLionel Sambucrm -f $INSTALLTOP/$clib.so 22*ebfedea0SLionel Sambucln -s $INSTALLTOP/$sh_clib $clib.so 23*ebfedea0SLionel Sambuc 24*ebfedea0SLionel Sambucrm -f $INSTALLTOP/$slib.so 25*ebfedea0SLionel Sambucln -s $INSTALLTOP/$sh_slib $slib.so 26*ebfedea0SLionel Sambuc 27*ebfedea0SLionel Sambuccd $PWD 28*ebfedea0SLionel Sambuc 29