Use the cmake version of raqm

This commit is contained in:
Eric Soroos 2017-06-28 21:03:51 +00:00
parent d417ba5ca7
commit 57632d56d7
2 changed files with 19 additions and 1 deletions

View File

@ -10,4 +10,4 @@ sudo pkg install python2 python3 py27-pip py27-virtualenv wget
# I can't find a python3.4 version of tkinter
sudo pkg install jpeg-turbo tiff webp lcms2 freetype2 harfbuzz fribidi py27-tkinter
./install_raqm.sh
./install_raqm_cmake.sh

18
depends/install_raqm_cmake.sh Executable file
View File

@ -0,0 +1,18 @@
#!/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