mirror of
				https://github.com/python-pillow/Pillow.git
				synced 2025-10-31 07:57:27 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			215 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			215 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| # install libimagequant
 | |
| 
 | |
| git clone -b 2.6.0 https://github.com/pornel/pngquant
 | |
| 
 | |
| pushd pngquant
 | |
| 
 | |
| make -C lib shared
 | |
| sudo cp lib/libimagequant.so* /usr/lib/
 | |
| sudo cp lib/libimagequant.h /usr/include/
 | |
| 
 | |
| popd
 |