Pillow/depends/install_raqm.sh

15 lines
265 B
Bash
Raw Normal View History

#!/usr/bin/env bash
2016-12-14 10:07:58 +03:00
# install raqm
2020-11-29 17:20:51 +03:00
archive=raqm-0.7.1
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