aboutsummaryrefslogtreecommitdiff
path: root/extra/libressl
diff options
context:
space:
mode:
authorCem Keylan <cem@ckyln.com>2020-06-11 01:59:57 +0300
committerCem Keylan <cem@ckyln.com>2020-06-11 01:59:57 +0300
commit5351806cde46a6d7b28c22cc69d1da6378da63ec (patch)
treeddc6b6c568928dd54b000b5fe88b1be5b094a3a0 /extra/libressl
parent29b6f84458ec6bad399d5246bbdba9303061f27c (diff)
downloadrepository-5351806cde46a6d7b28c22cc69d1da6378da63ec.tar.gz
libressl: move to extra
Diffstat (limited to 'extra/libressl')
-rwxr-xr-xextra/libressl/build13
-rw-r--r--extra/libressl/checksums2
-rwxr-xr-xextra/libressl/files/update-certdata.sh14
-rwxr-xr-xextra/libressl/post-install3
-rw-r--r--extra/libressl/sources2
-rw-r--r--extra/libressl/version1
6 files changed, 35 insertions, 0 deletions
diff --git a/extra/libressl/build b/extra/libressl/build
new file mode 100755
index 00000000..86ade623
--- /dev/null
+++ b/extra/libressl/build
@@ -0,0 +1,13 @@
+#!/bin/sh -e
+
+./configure \
+ --prefix=/usr \
+ --sysconfdir=/etc
+
+make
+make DESTDIR="$1" install
+
+install -Dm 755 update-certdata.sh "$1/etc/ssl"
+
+# Link ca-certificates to cert.pem
+ln -sfv ../cert.pem "$1/etc/ssl/certs/ca-certificates.crt"
diff --git a/extra/libressl/checksums b/extra/libressl/checksums
new file mode 100644
index 00000000..98276761
--- /dev/null
+++ b/extra/libressl/checksums
@@ -0,0 +1,2 @@
+47bd2eb4b4503e47c02efa7e67d2fcd95c7eac6bc9d06b343a1b4705793ed1d5 libressl-3.2.0.tar.gz
+670cb63624d1829a396d2a41399ab9a1124c81a26d48d3c9284a30c669cc14fe update-certdata.sh
diff --git a/extra/libressl/files/update-certdata.sh b/extra/libressl/files/update-certdata.sh
new file mode 100755
index 00000000..5283c329
--- /dev/null
+++ b/extra/libressl/files/update-certdata.sh
@@ -0,0 +1,14 @@
+#!/bin/sh -e
+#
+# update-certdata.sh
+
+[ -w "$KISS_ROOT/etc/ssl" ] || {
+ printf '%s\n' "${0##*/}: root required to update cert." >&2
+ exit 1
+}
+
+cd "$KISS_ROOT/etc/ssl" && {
+ wget https://curl.haxx.se/ca/cacert.pem
+ mv -f cacert.pem cert.pem
+ printf '%s\n' "${0##*/}: updated cert.pem"
+}
diff --git a/extra/libressl/post-install b/extra/libressl/post-install
new file mode 100755
index 00000000..8f76be97
--- /dev/null
+++ b/extra/libressl/post-install
@@ -0,0 +1,3 @@
+#!/bin/sh
+
+"$KISS_ROOT/etc/ssl/update-certdata.sh"
diff --git a/extra/libressl/sources b/extra/libressl/sources
new file mode 100644
index 00000000..ee5ee89f
--- /dev/null
+++ b/extra/libressl/sources
@@ -0,0 +1,2 @@
+https://fossies.org/linux/misc/libressl-3.2.0.tar.gz
+files/update-certdata.sh
diff --git a/extra/libressl/version b/extra/libressl/version
new file mode 100644
index 00000000..cd6c136c
--- /dev/null
+++ b/extra/libressl/version
@@ -0,0 +1 @@
+3.2.0 1