mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-10 19:56:47 +03:00
14 lines
260 B
Bash
Executable File
14 lines
260 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# install raqm
|
|
|
|
|
|
archive=libraqm-0.10.1
|
|
|
|
./download-and-extract.sh $archive https://raw.githubusercontent.com/python-pillow/pillow-depends/main/$archive.tar.gz
|
|
|
|
pushd $archive
|
|
|
|
meson build --prefix=/usr && sudo ninja -C build install
|
|
|
|
popd
|