mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-10 19:56:47 +03:00
19 lines
273 B
Bash
19 lines
273 B
Bash
|
#!/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
|
||
|
|