1
0
mirror of https://github.com/ventoy/Ventoy.git synced 2025-01-21 19:53:18 -05:00

23 lines
311 B
Bash
Raw Normal View History

2020-04-05 00:07:50 +08:00
#!/bin/bash
LIBDIR=$PWD/../LIB/LZ4
rm -rf $LIBDIR
rm -rf lz4-1.8.1.2
tar -xf lz4-1.8.1.2.tar.gz
cd lz4-1.8.1.2
make && PREFIX=$LIBDIR make install
cd ..
rm -rf lz4-1.8.1.2
if [ -d $LIBDIR ]; then
echo -e "\n========== SUCCESS ============\n"
else
echo -e "\n========== FAILED ============\n"
fi