repo/openssl/Makefile

18 lines
502 B
Makefile
Raw Normal View History

2021-06-30 01:08:46 +03:00
prepare:
git clone https://github.com/openssl/openssl.git
cd openssl
make:
2021-06-30 04:09:44 +03:00
./config --prefix=$prefix/usr \
--openssldir=$prefix/etc/ssl \
2021-06-30 01:08:46 +03:00
--libdir=lib \
shared \
zlib-dynamic
make
install:
sed -i '/INSTALL_LIBS/s/libcrypto.a libssl.a//' Makefile
make MANSUFFIX=ssl install
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'