summaryrefslogtreecommitdiff
path: root/repo/system/openssl.xibuild
blob: c2d5141a0186bce05ff91ec428dbd9e6b534a8fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh

MAKEDEPS="make "
DEPS="glibc"

PKG_VER=3.0.1
SOURCE=https://github.com/openssl/openssl/archive/refs/tags/openssl-$PKG_VER.tar.gz
DESC="The open source management tools and libraries for cryptography"

build () {
    ./config --prefix=/usr --openssldir=/etc/ssl --libdir=lib shared zlib-dynamic
    make
}

package () {
    sed -i '/INSTALL_LIBS/s/libcrypto.a libssl.a//' Makefile
    make MANSUFFIX=ssl DESTDIR=$PKG_DEST install 
    mkdir -pv $PKG_DEST/usr/share/doc/openssl
    cp -vfr doc/* $PKG_DEST/usr/share/doc/openssl
}