Created
May 14, 2020 22:09
-
-
Save c0nrad/b8063376735fccc1870f702f029be64d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
wget https://github.com/webmproject/libwebp/archive/v1.1.0.tar.gz -O /tmp/libwebp-v1.1.0.tar.gz | |
tar -C /tmp -zxvf /tmp/libwebp-v1.1.0.tar.gz | |
mkdir -p /tmp/libwebp-1.1.0/make | |
cd /tmp/libwebp-1.1.0 && \ | |
cmake -DWEBP_ENABLE_SIMD=ON -DWEBP_BUILD_CWEBP=ON -DWEBP_BUILD_DWEBP=ON -DWEBP_BUILD_GIF2WEBP=ON -DWEBP_BUILD_IMG2WEBP=ON -DWEBP_BUILD_WEBPINFO=ON -DWEBP_NEAR_LOSSLESS=ON ../ \ | |
make && make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment