mirror of
https://github.com/ventoy/Ventoy.git
synced 2025-06-04 00:48:48 -04:00
initial commit
This commit is contained in:
parent
2090c6fa97
commit
05a1b863a6
487 changed files with 114253 additions and 0 deletions
23
SQUASHFS/SRC/build_zstd.sh
Normal file
23
SQUASHFS/SRC/build_zstd.sh
Normal file
|
@ -0,0 +1,23 @@
|
|||
#!/bin/bash
|
||||
|
||||
LIBDIR=$PWD/../LIB/ZSTD
|
||||
ZSTDDIR=zstd-1.4.4
|
||||
|
||||
rm -rf $LIBDIR
|
||||
rm -rf $ZSTDDIR
|
||||
tar -xf ${ZSTDDIR}.tar.gz
|
||||
|
||||
|
||||
cd $ZSTDDIR
|
||||
PREFIX=$LIBDIR ZSTD_LIB_COMPRESSION=0 make
|
||||
PREFIX=$LIBDIR ZSTD_LIB_COMPRESSION=0 make install
|
||||
|
||||
cd ..
|
||||
rm -rf $ZSTDDIR
|
||||
|
||||
if [ -d $LIBDIR ]; then
|
||||
echo -e "\n========== SUCCESS ============\n"
|
||||
else
|
||||
echo -e "\n========== FAILED ============\n"
|
||||
fi
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue