blob: 9ec6fd299ad8ddbd0094d09ea37a7fb5565e80b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/bin/bash
DEPS=(glibc)
SOURCE=https://github.com/openssl/openssl
DESC="The open source management tools and libraries for cryptography"
BRANCH="OpenSSL_1_1_1-stable"
build () {
./config --prefix=/usr --openssldir=/etc/ssl --libdir=lib shared zlib-dynamic
make
sed -i '/INSTALL_LIBS/s/libcrypto.a libssl.a//' Makefile
make MANSUFFIX=ssl DESTDIR=$PKG_DEST install
}
package () {
mkdir -pv $PKG_DEST/usr/share/doc/openssl
cp -vfr doc/* $PKG_DEST/usr/share/doc/openssl
}
|