mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-10 19:56:47 +03:00
18 lines
270 B
Bash
Executable File
18 lines
270 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# install raqm
|
|
|
|
|
|
archive=raqm-cmake-99300ff3
|
|
|
|
./download-and-extract.sh $archive https://raw.githubusercontent.com/python-pillow/pillow-depends/main/$archive.tar.gz
|
|
|
|
pushd $archive
|
|
|
|
mkdir build
|
|
cd build
|
|
cmake ..
|
|
make && sudo make install
|
|
cd ..
|
|
|
|
popd
|