mirror of
				https://github.com/python-pillow/Pillow.git
				synced 2025-11-04 01:47:47 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			260 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			260 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env bash
 | 
						|
# install raqm
 | 
						|
 | 
						|
 | 
						|
archive=libraqm-0.10.2
 | 
						|
 | 
						|
./download-and-extract.sh $archive https://raw.githubusercontent.com/python-pillow/pillow-depends/main/$archive.tar.gz
 | 
						|
 | 
						|
pushd $archive
 | 
						|
 | 
						|
meson build --prefix=/usr && sudo ninja -C build install
 | 
						|
 | 
						|
popd
 |