Ventoy/SQUASHFS/SRC/build_lzo.sh

25 lines
344 B
Bash
Raw Normal View History

2020-04-04 12:07:50 -04:00
#!/bin/bash
LIBDIR=$PWD/../LIB/LZO
LZODIR=lzo-2.08
rm -rf $LIBDIR
rm -rf $LZODIR
tar -xf ${LZODIR}.tar.gz
cd $LZODIR
./configure --prefix=$LIBDIR --disable-shared
make && make install
cd ..
rm -rf $LZODIR
if [ -d $LIBDIR ]; then
echo -e "\n========== SUCCESS ============\n"
else
echo -e "\n========== FAILED ============\n"
fi