mirror of
https://github.com/ventoy/Ventoy.git
synced 2024-11-11 13:10:38 +00:00
23 lines
418 B
Bash
23 lines
418 B
Bash
|
#!/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
|
||
|
|
||
|
|