mirror of
				https://github.com/python-pillow/Pillow.git
				synced 2025-11-04 01:47:47 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			273 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			273 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env bash
 | 
						|
# install raqm
 | 
						|
 | 
						|
 | 
						|
archive=raqm-cmake-b517ba80
 | 
						|
 | 
						|
./download-and-extract.sh $archive https://raw.githubusercontent.com/python-pillow/pillow-depends/master/$archive.tar.gz
 | 
						|
 | 
						|
pushd $archive
 | 
						|
 | 
						|
mkdir build
 | 
						|
cd build
 | 
						|
cmake ..
 | 
						|
make && sudo make install
 | 
						|
cd ..
 | 
						|
 | 
						|
popd
 | 
						|
 |