■ Mastodon v4.3以降で、ImageMagickではなくlibvipsを使うための準備
とりあえず手順だけメモしとく
・有効にするには、8.13以降のlibvipsをインストールして、.env.productionにMASTODON_USE_LIBVIPS=trueを記述する(デフォルトはfalse)
・Ubuntu 22.04 LTSとか20.04 LTSでは、Mastodon v4.3.0以降で対応しているlibvips 8.13以降をaptで入れられない
・Ubuntu 24.04 LTS以降なら大丈夫なので、aptで入れると良い
sudo apt-get install libvips42t64
ソースから入れる場合は……
libvips42が入っていたら削除
sudo apt-get remove libvips42
libcgifを入れる
sudo add-apt-repository ppa:lovell/cgif
sudo apt-get update
sudo apt-get install libcgif-dev
最低限のビルド環境を整える
sudo apt install \
build-essential \
ninja-build \
python3-pip \
bc \
wget
pip3 install meson
sudo pip3 install meson
~/.bash_profileにpipのPATHが記載されていなければ追加
export PATH=$PATH:$HOME/.local/bin
. ~/.bash_profile
/root/.bash_profileにpipのPATHが記載されていなければ追加
export PATH=$PATH:/usr/local/bin
ソースコードを取得してビルド、インストールする
wget https://github.com/libvips/libvips/releases/download/v8.15.3/vips-8.15.3.tar.xz
tar xf vips-8.15.3.tar.xz
cd vips-8.15.3
meson setup build --libdir=lib --buildtype=release -Dintrospection=disabled
cd build
meson compile
meson test
sudo meson install