mirror of
https://github.com/ventoy/Ventoy.git
synced 2025-05-28 14:04:33 -04:00
Add Linux native GUI program for Ventoy2Disk.
x86_64 gtk2/gtk3 i386 gtk2/gtk3 aarch64 gtk3 mips64el gtk3
This commit is contained in:
parent
7db83dc0f1
commit
dd2411d7d4
37 changed files with 11312 additions and 131 deletions
24
LinuxGUI/EXLIB/prepare_lib_mips64el.sh
Normal file
24
LinuxGUI/EXLIB/prepare_lib_mips64el.sh
Normal file
|
@ -0,0 +1,24 @@
|
|||
#!/bin/bash
|
||||
|
||||
if [ ! -d $1/pool ]; then
|
||||
echo "$1/pool not exist"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
rm -rf mips64el
|
||||
mkdir mips64el
|
||||
cd mips64el
|
||||
|
||||
cat ../mips64ellibs | while read line; do
|
||||
find "$1/pool" -name "*${line}*.deb" | while read deb; do
|
||||
echo "extract ${deb##*/} ..."
|
||||
dpkg -x $deb .
|
||||
done
|
||||
done
|
||||
|
||||
dpkg -x ../libgtk-3-dev_3.22.11-1_mips64el.deb .
|
||||
|
||||
cd ..
|
||||
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue