2021-06-30 01:08:46 +03:00
|
|
|
prepare:
|
|
|
|
git clone https://github.com/openssl/openssl.git
|
|
|
|
cd openssl
|
2021-07-01 06:03:43 +03:00
|
|
|
$(MAKE):
|
2021-06-30 04:15:01 +03:00
|
|
|
./config --prefix=${PREFIX}/usr \
|
|
|
|
--openssldir=${PREFIX}/etc/ssl \
|
2021-06-30 01:08:46 +03:00
|
|
|
--libdir=lib \
|
|
|
|
shared \
|
|
|
|
zlib-dynamic
|
2021-07-01 06:03:43 +03:00
|
|
|
$(MAKE)
|
2021-06-30 01:08:46 +03:00
|
|
|
install:
|
|
|
|
sed -i '/INSTALL_LIBS/s/libcrypto.a libssl.a//' Makefile
|
2021-07-01 06:03:43 +03:00
|
|
|
$(MAKE) MANSUFFIX=ssl install
|
2021-06-30 01:08:46 +03:00
|
|
|
mv -v /usr/share/doc/openssl /usr/share/doc/openssl-1.1.1d
|
|
|
|
cp -vfr doc/* /usr/share/doc/openssl-1.1.1d
|
|
|
|
uninstall:
|
|
|
|
@echo 'no script for uninstall @ ssl'
|