Pillow/depends/install_raqm_cmake.sh

19 lines
273 B
Bash
Raw Normal View History

2017-06-29 00:03:51 +03:00
#!/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