Pillow/depends/install_raqm.sh

15 lines
257 B
Bash
Raw Normal View History

2016-12-14 10:07:58 +03:00
#!/bin/bash
# install raqm
2017-06-13 23:22:53 +03:00
archive=raqm-0.2.0
2016-12-14 10:07:58 +03:00
2017-06-13 23:22:53 +03:00
./download-and-extract.sh $archive https://raw.githubusercontent.com/python-pillow/pillow-depends/master/$archive.tar.gz
2016-12-14 10:07:58 +03:00
2017-06-13 23:22:53 +03:00
pushd $archive
2016-12-14 10:07:58 +03:00
./configure --prefix=/usr && make -j4 && sudo make -j4 install
popd