Compare commits
4 Commits
3428fd76fa
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| a163c71a9b | |||
| ed9cbdbccd | |||
| fd512f0f8c | |||
| 67bd8f242a |
@@ -6,7 +6,7 @@ RUN useradd -ms /bin/bash rust
|
|||||||
ADD peldd /usr/bin/peldd
|
ADD peldd /usr/bin/peldd
|
||||||
ADD package.sh /usr/bin/package.sh
|
ADD package.sh /usr/bin/package.sh
|
||||||
|
|
||||||
RUN dnf install -y mingw64-gcc mingw64-freetype mingw64-cairo mingw64-harfbuzz mingw64-pango mingw64-poppler mingw64-gtk3 mingw64-winpthreads-static mingw64-glib2-static gcc boost zip git && dnf clean all -y
|
RUN dnf install -y mingw64-gcc mingw64-freetype mingw64-cairo mingw64-harfbuzz mingw64-pango mingw64-poppler mingw64-gtk3 mingw64-winpthreads-static mingw64-glib2-static gcc boost zip git cmake @development-tools && dnf clean all -y
|
||||||
|
|
||||||
USER rust
|
USER rust
|
||||||
|
|
||||||
|
|||||||
17
package.sh
17
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,16 +16,7 @@ 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/*
|
||||||
|
|
||||||
zip -r package.zip package/*
|
zip -q -r package.zip package/*
|
||||||
|
|||||||
Reference in New Issue
Block a user