Compare commits
2 Commits
3428fd76fa
...
fd512f0f8c
Author | SHA1 | Date |
---|---|---|
Max Bradbury | fd512f0f8c | |
Max Bradbury | 67bd8f242a |
15
package.sh
15
package.sh
|
@ -1,12 +1,14 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
source ~/.cargo/env
|
source /home/rust/.cargo/env
|
||||||
cargo build --target=x86_64-pc-windows-gnu --release
|
cargo build --target=x86_64-pc-windows-gnu --release
|
||||||
|
|
||||||
mkdir package
|
mkdir package
|
||||||
cp target/x86_64-pc-windows-gnu/release/*.exe package
|
cp target/x86_64-pc-windows-gnu/release/*.exe package
|
||||||
|
|
||||||
export DLLS=`peldd package/*.exe -t --ignore-errors`
|
DLLS=$(peldd package/*.exe -t --ignore-errors)
|
||||||
|
export DLLS
|
||||||
|
|
||||||
for DLL in $DLLS
|
for DLL in $DLLS
|
||||||
do cp "$DLL" package
|
do cp "$DLL" package
|
||||||
done
|
done
|
||||||
|
@ -14,15 +16,6 @@ done
|
||||||
mkdir -p package/share/{themes,gtk-3.0}
|
mkdir -p package/share/{themes,gtk-3.0}
|
||||||
cp -r "$GTK_INSTALL_PATH"/share/glib-2.0/schemas package/share/glib-2.0
|
cp -r "$GTK_INSTALL_PATH"/share/glib-2.0/schemas package/share/glib-2.0
|
||||||
cp -r "$GTK_INSTALL_PATH"/share/icons package/share/icons
|
cp -r "$GTK_INSTALL_PATH"/share/icons package/share/icons
|
||||||
cp -r ~/Windows10 package/share/themes
|
|
||||||
|
|
||||||
cat << EOF > package/share/gtk-3.0/settings.ini
|
|
||||||
[Settings]
|
|
||||||
gtk-theme-name = Windows10
|
|
||||||
gtk-font-name = Segoe UI 10
|
|
||||||
gtk-xft-rgba = rgb
|
|
||||||
gtk-xft-antialias = 1
|
|
||||||
EOF
|
|
||||||
|
|
||||||
mingw-strip package/*
|
mingw-strip package/*
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue