From c5cd32dd4af58492910e1af1b2d7b7653a3907da Mon Sep 17 00:00:00 2001 From: Andrew Murray Date: Sat, 14 Jan 2017 19:54:14 +1100 Subject: [PATCH] Changed from pngquant to libimagequant --- depends/install_imagequant.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/depends/install_imagequant.sh b/depends/install_imagequant.sh index 21386557b..4a8c0e6be 100755 --- a/depends/install_imagequant.sh +++ b/depends/install_imagequant.sh @@ -1,14 +1,14 @@ #!/bin/bash # install libimagequant -archive=pngquant-2.8.2 +archive=libimagequant-2.8.2 ./download-and-extract.sh $archive https://raw.githubusercontent.com/python-pillow/pillow-depends/master/$archive.tar.gz pushd $archive -make -C lib shared -sudo cp lib/libimagequant.so* /usr/lib/ -sudo cp lib/libimagequant.h /usr/include/ +make shared +sudo cp libimagequant.so* /usr/lib/ +sudo cp libimagequant.h /usr/include/ popd