Ventoy/SQUASHFS/SRC/build_lzo.sh
2020-04-05 00:08:01 +08:00

24 lines
344 B
Bash

#!/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