From bd0e79bb2d97b9fd393a0770a1316aa7c166f799 Mon Sep 17 00:00:00 2001 From: Peter Marquardt Date: Tue, 2 Apr 2024 10:59:12 +0200 Subject: [PATCH] libthai.so : added - appimage dependency - appimage dependency ??? WTF ??? - appimage dependency. --- libthai.be0 | 56 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100755 libthai.be0 diff --git a/libthai.be0 b/libthai.be0 new file mode 100755 index 000000000..5659989e9 --- /dev/null +++ b/libthai.be0 @@ -0,0 +1,56 @@ +#!/usr/bin/env beesh + +# BEE_VERSION libthai-0.1.29-1 + +# more info: https://foo.bar.com + +SRCURL[0]="https://github.com/tlwg/libthai/releases/download/v0.1.29/libthai-0.1.29.tar.xz" +SRCURL[1]="https://github.com/tlwg/libdatrie/releases/download/v0.2.13/libdatrie-0.2.13.tar.xz" + +# PATCHURL+=() + +# build_in_sourcedir + +# sourcesubdir_append src + +#mee_extract() { +# bee_extract "${@}" +#} + +#mee_patch() { +# bee_patch "${@}" +#} + +mee_configure_pre() { + # libdatrie + mkdir -p ${B}/libdatrie + cd ${B}/libdatrie + +# ${S}/libdatrie-0.2.13/autogen.sh \ + CFLAGS="-O2 -fPIC" \ + ${S}/libdatrie-0.2.13/configure \ + --prefix=${B}/extras \ + --disable-shared \ + --disable-documentation \ + + make ${BEE_MAKEFLAGS} + make install + cd ${B} +} + +mee_configure() { +# PKG_CONFIG_PATH=${B}/extras/lib/pkgconfig \ +# DATRIE_LIBS="-L${B}/extras/lib ${B}/extras/lib/libdatrie.a" \ + + DATRIE_CFLAGS="-I${B}/extras/include" \ + DATRIE_LIBS="-L${B}/extras/lib -l:libdatrie.a" \ + bee_configure --disable-dict --disable-doxygen-doc +} + +#mee_build() { +# bee_build +#} + +#mee_install() { +# bee_install +#}