repo/openssl/Makefile
2021-06-30 03:15:01 +02:00

17 lines
506 B
Makefile

prepare:
git clone https://github.com/openssl/openssl.git
cd openssl
make:
./config --prefix=${PREFIX}/usr \
--openssldir=${PREFIX}/etc/ssl \
--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'