You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Ventoy/SQUASHFS/SRC/build_lzma.sh

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