diff options
| author | emmett1 <emmett1.2miligrams@protonmail.com> | 2025-12-18 16:56:21 +0000 |
|---|---|---|
| committer | emmett1 <emmett1.2miligrams@protonmail.com> | 2025-12-18 16:56:21 +0000 |
| commit | 407be9ff4c22fdaf6d7b7f1a8fe1e4dfa3bc9ec0 (patch) | |
| tree | 908ec1b6aab98ca67283800abe4663de59c8bf23 /repos | |
| parent | fa5b5ad9c899d516a033bfe4ea87701ad05bf7f2 (diff) | |
| download | alicelinux-407be9ff4c22fdaf6d7b7f1a8fe1e4dfa3bc9ec0.tar.gz alicelinux-407be9ff4c22fdaf6d7b7f1a8fe1e4dfa3bc9ec0.zip | |
libressl: static build
Diffstat (limited to 'repos')
| -rw-r--r-- | repos/core/libressl/.files | 3 | ||||
| -rw-r--r-- | repos/core/libressl/abuild | 15 |
2 files changed, 16 insertions, 2 deletions
diff --git a/repos/core/libressl/.files b/repos/core/libressl/.files index 7cf82d1c..c3c44e4e 100644 --- a/repos/core/libressl/.files +++ b/repos/core/libressl/.files @@ -79,12 +79,15 @@ drwxr-xr-x root/root usr/include/openssl/ -rw-r--r-- root/root usr/include/openssl/x509v3.h -rw-r--r-- root/root usr/include/tls.h drwxr-xr-x root/root usr/lib/ +-rw-r--r-- root/root usr/lib/libcrypto.a lrwxrwxrwx root/root usr/lib/libcrypto.so -> libcrypto.so.57.0.1 lrwxrwxrwx root/root usr/lib/libcrypto.so.57 -> libcrypto.so.57.0.1 -rw-r--r-- root/root usr/lib/libcrypto.so.57.0.1 +-rw-r--r-- root/root usr/lib/libssl.a lrwxrwxrwx root/root usr/lib/libssl.so -> libssl.so.60.0.1 lrwxrwxrwx root/root usr/lib/libssl.so.60 -> libssl.so.60.0.1 -rw-r--r-- root/root usr/lib/libssl.so.60.0.1 +-rw-r--r-- root/root usr/lib/libtls.a lrwxrwxrwx root/root usr/lib/libtls.so -> libtls.so.33.0.1 lrwxrwxrwx root/root usr/lib/libtls.so.33 -> libtls.so.33.0.1 -rw-r--r-- root/root usr/lib/libtls.so.33.0.1 diff --git a/repos/core/libressl/abuild b/repos/core/libressl/abuild index 531856e2..db486ad0 100644 --- a/repos/core/libressl/abuild +++ b/repos/core/libressl/abuild @@ -1,8 +1,19 @@ name=libressl version=4.2.1 -release=1 +release=2 source="https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/${name}-${version}.tar.gz" +keep_static=1 -postbuild() { +build() { + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --enable-static \ + --enable-shared + make + make DESTDIR=$PKG install + make clean + make LDFLAGS="-all-static" + make DESTDIR=$PKG install rm $PKG/etc/ssl/cert.pem } |