mirror of
https://github.com/lvgl/lvgl.git
synced 2026-05-09 20:27:41 +08:00
cb8ac4df4f
Signed-off-by: lhdjply <lhdjply@126.com>
12 lines
167 B
Bash
Executable File
12 lines
167 B
Bash
Executable File
#!/bin/sh
|
|
|
|
rm -rf pngquant
|
|
git clone https://github.com/kornelski/pngquant
|
|
cd pngquant
|
|
git checkout 2.17.0
|
|
./configure
|
|
make -j
|
|
sudo make install
|
|
cd ..
|
|
rm -rf pngquant
|