New Package: OpenSSL
This commit is contained in:
parent
19e01873b0
commit
7b83b79eb0
1 changed files with 17 additions and 0 deletions
17
openssl/Makefile
Normal file
17
openssl/Makefile
Normal file
|
@ -0,0 +1,17 @@
|
|||
prepare:
|
||||
git clone https://github.com/openssl/openssl.git
|
||||
cd openssl
|
||||
make:
|
||||
./config --prefix=/usr \
|
||||
--openssldir=/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'
|
Loading…
Reference in a new issue