mirror of
https://github.com/ventoy/Ventoy.git
synced 2025-08-28 00:11:15 +00:00
initial commit
This commit is contained in:
24
SQUASHFS/SRC/build_lzo.sh
Normal file
24
SQUASHFS/SRC/build_lzo.sh
Normal file
@@ -0,0 +1,24 @@
|
||||
#!/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
|
||||
|
Reference in New Issue
Block a user