mirror of
https://github.com/ventoy/Ventoy.git
synced 2025-06-02 16:09:56 -04:00
initial commit
This commit is contained in:
parent
2090c6fa97
commit
05a1b863a6
487 changed files with 114253 additions and 0 deletions
22
SQUASHFS/SRC/build_lzma.sh
Normal file
22
SQUASHFS/SRC/build_lzma.sh
Normal file
|
@ -0,0 +1,22 @@
|
|||
#!/bin/bash
|
||||
|
||||
LIBDIR=$PWD/../LIB/LZMA
|
||||
|
||||
rm -rf $LIBDIR
|
||||
rm -rf liblzma-master
|
||||
unzip liblzma-master.zip
|
||||
|
||||
cd liblzma-master
|
||||
./configure --prefix=$LIBDIR --disable-xz --disable-xzdec --disable-lzmadec --disable-lzmainfo --enable-small
|
||||
make -j 8 && make install
|
||||
|
||||
cd ..
|
||||
rm -rf liblzma-master
|
||||
|
||||
if [ -d $LIBDIR ]; then
|
||||
echo -e "\n========== SUCCESS ============\n"
|
||||
else
|
||||
echo -e "\n========== FAILED ============\n"
|
||||
fi
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue