25 lines
677 B
Text
Executable file
25 lines
677 B
Text
Executable file
# Description: Management tools and libraries relating to cryptography
|
|
# URL:
|
|
# Maintainer: Emmett1, emmett1 dot 2miligrams at gmail dot com
|
|
# Depends on:
|
|
|
|
name=openssl
|
|
version=1.1.1h
|
|
release=1
|
|
source=(https://openssl.org/source/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./config --prefix=/usr \
|
|
--openssldir=/etc/ssl \
|
|
--libdir=lib \
|
|
shared \
|
|
zlib-dynamic
|
|
make
|
|
|
|
# disable static lib
|
|
sed -i '/INSTALL_LIBS/s/libcrypto.a libssl.a//' Makefile
|
|
|
|
make DESTDIR=$PKG MANDIR=/usr/share/man MANSUFFIX=ssl install
|
|
}
|