Pillow/depends/install_raqm_cmake.sh

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
270 B
Bash
Raw Normal View History

2017-06-29 00:03:51 +03:00
#!/usr/bin/env bash
# install raqm
2019-05-01 11:00:50 +03:00
archive=raqm-cmake-99300ff3
2017-06-29 00:03:51 +03:00
2021-10-15 17:30:05 +03:00
./download-and-extract.sh $archive https://raw.githubusercontent.com/python-pillow/pillow-depends/main/$archive.tar.gz
2017-06-29 00:03:51 +03:00
pushd $archive
mkdir build
cd build
cmake ..
make && sudo make install
cd ..
popd