]> glassweightruler.freedombox.rocks Git - Ventoy.git/blob - SQUASHFS/SRC/build_lzo.sh
update languages.ini (#829 #834)
[Ventoy.git] / SQUASHFS / SRC / build_lzo.sh
1 #!/bin/bash
2
3 LIBDIR=$PWD/../LIB/LZO
4 LZODIR=lzo-2.08
5
6 rm -rf $LIBDIR
7 rm -rf $LZODIR
8 tar -xf ${LZODIR}.tar.gz
9
10
11 cd $LZODIR
12 ./configure --prefix=$LIBDIR --disable-shared
13
14 make && make install
15
16 cd ..
17 rm -rf $LZODIR
18
19 if [ -d $LIBDIR ]; then
20 echo -e "\n========== SUCCESS ============\n"
21 else
22 echo -e "\n========== FAILED ============\n"
23 fi
24