There was an error while loading. Please reload this page.
1 parent 6fba8c8 commit fb6ad89Copy full SHA for fb6ad89
Dockerfile
@@ -3,5 +3,6 @@ FROM debian:bullseye
3
RUN apt update && apt install -y build-essential git pkg-config automake autoconf libtool libfuse-dev fuse uuid-dev libxml2-dev libsnmp-dev libicu-dev icu-devtools
4
5
COPY entrypoint.sh /entrypoint.sh
6
+COPY icu-config /usr/bin/icu-config
7
8
ENTRYPOINT ["/entrypoint.sh"]
icu-config
@@ -0,0 +1,12 @@
1
+#!/bin/sh
2
+
+opts=$1
+case $opts in
+ '--cppflags')
+ echo '' ;;
+ '--ldflags')
9
+ echo '-licuuc -licudata' ;;
10
+ *)
11
+ echo '/usr/lib/x86_64-linux-gnu/icu/pkgdata.inc' ;;
12
+esac
0 commit comments