mirror of
				https://github.com/python-pillow/Pillow.git
				synced 2025-11-04 01:47:47 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			40 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
# install libimagequant
 | 
						|
 | 
						|
archive_name=libimagequant
 | 
						|
archive_version=4.3.4
 | 
						|
 | 
						|
archive=$archive_name-$archive_version
 | 
						|
 | 
						|
if [[ "$GHA_LIBIMAGEQUANT_CACHE_HIT" == "true" ]]; then
 | 
						|
 | 
						|
    # Copy cached files into place
 | 
						|
    sudo cp ~/cache-$archive_name/libimagequant.so* /usr/lib/
 | 
						|
    sudo cp ~/cache-$archive_name/libimagequant.h /usr/include/
 | 
						|
 | 
						|
else
 | 
						|
 | 
						|
    # Build from source
 | 
						|
    ./download-and-extract.sh $archive https://raw.githubusercontent.com/python-pillow/pillow-depends/main/$archive.tar.gz
 | 
						|
 | 
						|
    pushd $archive/imagequant-sys
 | 
						|
 | 
						|
    cargo install cargo-c
 | 
						|
    cargo cinstall --prefix=/usr --destdir=.
 | 
						|
 | 
						|
    # Copy into place
 | 
						|
    sudo find usr -name libimagequant.so* -exec cp {} /usr/lib/ \;
 | 
						|
    sudo cp usr/include/libimagequant.h /usr/include/
 | 
						|
 | 
						|
    if [ -n "$GITHUB_ACTIONS" ]; then
 | 
						|
        # Copy to cache
 | 
						|
        rm -rf ~/cache-$archive_name
 | 
						|
        mkdir ~/cache-$archive_name
 | 
						|
        find usr -name libimagequant.so* -exec cp {} ~/cache-$archive_name/ \;
 | 
						|
        cp usr/include/libimagequant.h ~/cache-$archive_name/
 | 
						|
    fi
 | 
						|
 | 
						|
    popd
 | 
						|
 | 
						|
fi
 |