mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2025-06-28 20:29:53 +00:00
49 lines
1.9 KiB
Bash
Executable file
49 lines
1.9 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
function readlink() {
|
|
echo "$(cd "$(dirname "$1")"; pwd -P)"
|
|
}
|
|
|
|
root_dir="$(dirname "$(dirname "$(readlink "$0")")")"
|
|
multiplatform_dir=$root_dir/apps/multiplatform
|
|
release_app_dir=$root_dir/apps/multiplatform/release/main/app
|
|
|
|
cd $multiplatform_dir
|
|
libcrypto_path=$(ldd common/src/commonMain/cpp/desktop/libs/*/libHSdirect-sqlcipher-*.so | grep libcrypto | cut -d'=' -f 2 | cut -d ' ' -f 2)
|
|
trap "rm common/src/commonMain/cpp/desktop/libs/*/`basename $libcrypto_path` 2> /dev/null || true" EXIT
|
|
cp $libcrypto_path common/src/commonMain/cpp/desktop/libs/*
|
|
|
|
./gradlew createDistributable
|
|
rm common/src/commonMain/cpp/desktop/libs/*/`basename $libcrypto_path`
|
|
|
|
rm -rf $release_app_dir/AppDir 2>/dev/null
|
|
mkdir -p $release_app_dir/AppDir/usr
|
|
|
|
cd $release_app_dir/AppDir
|
|
cp -r ../*imple*/{bin,lib} usr
|
|
cp usr/lib/simplex.png .
|
|
|
|
# For https://github.com/TheAssassin/AppImageLauncher to be able to show the icon
|
|
mkdir -p usr/share/{icons,metainfo,applications}
|
|
cp usr/lib/simplex.png usr/share/icons
|
|
|
|
ln -s usr/bin/*imple* AppRun
|
|
cp $multiplatform_dir/desktop/src/jvmMain/resources/distribute/*imple*.desktop chat.simplex.app.desktop
|
|
sed -i 's|Exec=.*|Exec=simplex|g' *imple*.desktop
|
|
sed -i 's|Icon=.*|Icon=simplex|g' *imple*.desktop
|
|
cp *imple*.desktop usr/share/applications/
|
|
cp $multiplatform_dir/desktop/src/jvmMain/resources/distribute/*.appdata.xml usr/share/metainfo
|
|
|
|
if [ ! -f ../appimagetool-x86_64.AppImage ]; then
|
|
wget --secure-protocol=TLSv1_3 https://github.com/AppImage/appimagetool/releases/download/continuous/appimagetool-x86_64.AppImage -O ../appimagetool-x86_64.AppImage
|
|
chmod +x ../appimagetool-x86_64.AppImage
|
|
fi
|
|
if [ ! -f ../runtime-x86_64 ]; then
|
|
wget --secure-protocol=TLSv1_3 https://github.com/AppImage/type2-runtime/releases/download/continuous/runtime-x86_64 -O ../runtime-x86_64
|
|
chmod +x ../runtime-x86_64
|
|
fi
|
|
../appimagetool-x86_64.AppImage --runtime-file ../runtime-x86_64 .
|
|
|
|
mv *imple*.AppImage ../../
|