summaryrefslogtreecommitdiff
path: root/repo/system/openssl.xibuild
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-03-03 00:17:35 +0000
committerdavidovski <david@davidovski.xyz>2022-03-03 00:17:35 +0000
commita70109dc79c581ff693bd73ac0be10e3bd4da9c0 (patch)
treee7b486374edcf51b72d82efef369c879c8e4bc05 /repo/system/openssl.xibuild
parent2fea415a8b6ab9eae92686a182341d8f5fe56d00 (diff)
moved ssl back to openssl
Diffstat (limited to 'repo/system/openssl.xibuild')
-rw-r--r--repo/system/openssl.xibuild20
1 files changed, 20 insertions, 0 deletions
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
+}