Skip to content

Commit

Permalink
Use quotes in windows build script
Browse files Browse the repository at this point in the history
Signed-off-by: Maxim Logaev <[email protected]>
  • Loading branch information
mxlgv committed Mar 12, 2024
1 parent ca1f97e commit 89d84ed
Showing 1 changed file with 34 additions and 37 deletions.
71 changes: 34 additions & 37 deletions build-win64.sh
Original file line number Diff line number Diff line change
@@ -1,24 +1,9 @@
#!/bin/bash
set -e

DIST_DIR=${PWD}/windows-installer/win64-dist
DIST_DIR="$PWD/windows-installer/win64-dist"
JOBS=$NUMBER_OF_PROCESSORS

download_yolort()
{
file_name=cppwinrt-2.0.210122.3+windows-10.0.19041+yolort-835cd4e.zip
original_folder=${PWD}

cd plugins\\windows-notification
mkdir -p yolort
cd yolort
curl -L -O https://github.com/LAGonauta/YoloRT/releases/download/v1.0.0/${file_name}
echo "675a6d943c97b4acdbfaa473f68d3241d1798b31a67b5529c8d29fc0176a1707 ${file_name}" | sha256sum --check --status
unzip -o ${file_name}
rm ${file_name}
cd ${original_folder}
}

msg()
{
echo -e "\e[32m$1\e[0m"
Expand All @@ -30,6 +15,18 @@ fatal()
exit 1
}

download_yolort()
{
file_name=cppwinrt-2.0.210122.3+windows-10.0.19041+yolort-835cd4e.zip
yolort_dir="$PWD/plugins/windows-notification/yolort"

mkdir "$yolort_dir"
curl -L -o "$file_name" "https://github.com/LAGonauta/YoloRT/releases/download/v1.0.0/$file_name"
echo "675a6d943c97b4acdbfaa473f68d3241d1798b31a67b5529c8d29fc0176a1707 $file_name" | sha256sum --check --status
unzip -o "$file_name" -d "$yolort_dir"
rm -f "$file_name"
}

prepare()
{
msg "Installing MINGW64 build dependencies"
Expand Down Expand Up @@ -74,14 +71,14 @@ prepare()
configure()
{
msg "Running configuration for Windows"
./configure --program-prefix=$DIST_DIR --no-debug --release --disable-fast-vapi --with-libsoup3
./configure --program-prefix="$DIST_DIR" --no-debug --release --disable-fast-vapi --with-libsoup3
msg "Configured!"
}

build()
{
msg "Started building on $JOBS threads"
make -j$JOBS
make -j"$JOBS"
msg "Successfully builded!"
}

Expand All @@ -91,15 +88,15 @@ dist_install()
make install

msg "Copying MINGW64 dependencies"
cp /mingw64/bin/gdbus.exe $DIST_DIR/bin
cp /mingw64/bin/gspawn-win64-helper.exe $DIST_DIR/bin
cp /mingw64/bin/gdbus.exe "$DIST_DIR/bin"
cp /mingw64/bin/gspawn-win64-helper.exe "$DIST_DIR/bin"

cp /mingw64/bin/libcrypto-*-x64.dll $DIST_DIR/bin/
cp -r /mingw64/lib/gstreamer-1.0 $DIST_DIR/lib
mkdir -p $DIST_DIR/lib/gdk-pixbuf-2.0/ && cp -r /mingw64/lib/gdk-pixbuf-2.0 $DIST_DIR/lib/
mkdir -p $DIST_DIR/lib/gio/ && cp -r /mingw64/lib/gio $DIST_DIR/lib/
cp /mingw64/bin/libcrypto-*-x64.dll "$DIST_DIR/bin/"
cp -r /mingw64/lib/gstreamer-1.0 "$DIST_DIR/lib"
mkdir -p "$DIST_DIR/lib/gdk-pixbuf-2.0/" && cp -r /mingw64/lib/gdk-pixbuf-2.0 "$DIST_DIR/lib/"
mkdir -p "$DIST_DIR/lib/gio/" && cp -r /mingw64/lib/gio "$DIST_DIR/lib/"

list=`find $DIST_DIR -type f \( -name "*.exe" -o -name "*.dll" \) -exec \
list=`find "$DIST_DIR" -type f \( -name "*.exe" -o -name "*.dll" \) -exec \
ntldd -R {} + | \
grep "mingw64" | \
cut -f1 -d "=" | sort | uniq`
Expand All @@ -108,23 +105,23 @@ dist_install()
done

msg "Removing debug information from all EXE and DLL files"
find $DIST_DIR -iname "*.exe" -exec strip -s {} +
find $DIST_DIR -iname "*.dll" -exec strip -s {} +
find "$DIST_DIR" -iname "*.exe" -exec strip -s {} +
find "$DIST_DIR" -iname "*.dll" -exec strip -s {} +

find $DIST_DIR -iname "*.a" -exec rm {} +
find "$DIST_DIR" -iname "*.a" -exec rm {} +

msg "Removing redudant header files"
rm -rf $DIST_DIR/include
rm -rf "$DIST_DIR/include"

msg "Copy LICENSE"
cp -f ${PWD}/LICENSE $DIST_DIR/LICENSE
cp -f "$PWD/LICENSE" "$DIST_DIR/LICENSE"

msg "Copy icons, themes, locales and fonts"
cp -f ${PWD}/main/dino.ico $DIST_DIR/dino.ico
cp -rf /mingw64/share/xml $DIST_DIR/share
mkdir -p $DIST_DIR/etc/fonts && cp -r /mingw64/etc/fonts $DIST_DIR/etc/
mkdir -p $DIST_DIR/share/icons && cp -r /mingw64/share/icons $DIST_DIR/share/
mkdir -p $DIST_DIR/share/glib-2.0/schemas && cp -rf /mingw64/share/glib-2.0/schemas $DIST_DIR/share/glib-2.0/
cp -f "$PWD/main/dino.ico" "$DIST_DIR/dino.ico"
cp -rf "/mingw64/share/xml" "$DIST_DIR/share"
mkdir -p "$DIST_DIR/etc/fonts" && cp -r /mingw64/etc/fonts "$DIST_DIR/etc/"
mkdir -p "$DIST_DIR/share/icons" && cp -r /mingw64/share/icons "$DIST_DIR/share/"
mkdir -p "$DIST_DIR/share/glib-2.0/schemas" && cp -rf /mingw64/share/glib-2.0/schemas "$DIST_DIR/share/glib-2.0/"

msg "Successfully installed!"
}
Expand All @@ -140,7 +137,7 @@ build_installer()

clean()
{
rm -rf build $DIST_DIR
rm -rf build "$DIST_DIR"
msg "Build artifacts removed successfull!"
}

Expand All @@ -161,7 +158,7 @@ Running without parameters is equivalent to running:
EOF
}

if [[ $(uname) != "MINGW64_NT"* ]]; then
if [[ "$(uname)" != "MINGW64_NT"* ]]; then
fatal "This is not a MINGW64 environment!"
fi

Expand Down

0 comments on commit 89d84ed

Please sign in to comment.