summaryrefslogtreecommitdiff
path: root/ICU/73.2
diff options
context:
space:
mode:
authorXavier Del Campo Romero <xavi.dcr@tutanota.com>2023-10-20 12:50:34 +0200
committerXavier Del Campo Romero <xavi.dcr@tutanota.com>2023-10-24 22:58:59 +0200
commitf001951e3aec75bf750fda476c0ba4ce443029c3 (patch)
tree3f498ed5b6772043675f1abb5eea084c19fe464d /ICU/73.2
parent505c7012cb160690afdcf5e50a98970ad346cb1e (diff)
downloadspm-packages-prosody.tar.gz
WIP prosodyprosody
Diffstat (limited to 'ICU/73.2')
-rw-r--r--ICU/73.2/Dockerfile18
1 files changed, 18 insertions, 0 deletions
diff --git a/ICU/73.2/Dockerfile b/ICU/73.2/Dockerfile
new file mode 100644
index 0000000..1cf0714
--- /dev/null
+++ b/ICU/73.2/Dockerfile
@@ -0,0 +1,18 @@
+FROM alpine
+RUN apk update && apk add \
+ make \
+ gcc \
+ g++ \
+ musl-dev \
+ wget
+RUN wget https://github.com/unicode-org/icu/releases/download/release-73-2/icu4c-73_2-src.tgz
+RUN tar -xf icu4c-73_2-src.tgz
+WORKDIR /icu/source
+ARG PREFIX=/opt/spm/libicu-73.2
+RUN ./configure \
+ --prefix=$PREFIX \
+ --enable-static \
+ --disable-shared \
+ CFLAGS='-ffunction-sections -fdata-sections -Os'
+RUN make -j$(nproc --all)
+RUN make install