From a70109dc79c581ff693bd73ac0be10e3bd4da9c0 Mon Sep 17 00:00:00 2001 From: davidovski Date: Thu, 3 Mar 2022 00:17:35 +0000 Subject: moved ssl back to openssl --- repo/system/openssl.xibuild | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 repo/system/openssl.xibuild (limited to 'repo/system/openssl.xibuild') diff --git a/repo/system/openssl.xibuild b/repo/system/openssl.xibuild new file mode 100644 index 0000000..396710b --- /dev/null +++ b/repo/system/openssl.xibuild @@ -0,0 +1,20 @@ +#!/bin/sh + +MAKEDEPS="make " +DEPS="musl" + +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 +} -- cgit v1.2.1