ec7fa6332d
Co-authored-by: hay-kot <hay-kot@pm.me>
12 lines
No EOL
299 B
Bash
12 lines
No EOL
299 B
Bash
#!/bin/bash
|
|
# install webp
|
|
|
|
archive=libwebp-1.2.0
|
|
|
|
./download-and-extract.sh $archive https://raw.githubusercontent.com/python-pillow/pillow-depends/master/$archive.tar.gz
|
|
|
|
pushd $archive
|
|
|
|
./configure --prefix=/usr --enable-libwebpmux --enable-libwebpdemux && make -j4 && sudo make -j4 install
|
|
|
|
popd |