mirror of
				https://github.com/python-pillow/Pillow.git
				synced 2025-10-29 15:07:44 +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.3
 | |
| 
 | |
| ./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
 |