Merge pull request #13532 from legends2k/manim_texlive

manim: Fix missing package in optdepends
This commit is contained in:
Christoph Reiter
2022-10-19 22:36:09 +02:00
committed by GitHub

View File

@@ -4,7 +4,7 @@ _realname=manim
pkgbase=mingw-w64-${_realname}
pkgname=("${MINGW_PACKAGE_PREFIX}-${_realname}")
pkgver=0.16.0
pkgrel=2
pkgrel=3
pkgdesc="Animation engine for explanatory math videos (community edition) (mingw-w64)"
arch=('any')
mingw_arch=('mingw32' 'mingw64' 'ucrt64')
@@ -39,7 +39,7 @@ depends=(
"${MINGW_PACKAGE_PREFIX}-python-skia-pathops"
"${MINGW_PACKAGE_PREFIX}-python-srt"
)
optdepends=("${MINGW_PACKAGE_PREFIX}-texlive-scheme-medium: For LaTeX support")
optdepends=("${MINGW_PACKAGE_PREFIX}-texlive-latex-extra: For LaTeX support")
makedepends=("${MINGW_PACKAGE_PREFIX}-python-build"
"${MINGW_PACKAGE_PREFIX}-python-installer"
"${MINGW_PACKAGE_PREFIX}-python-poetry-core"
@@ -56,6 +56,7 @@ prepare() {
sed -i 's/cloup = "^0.13.0"/cloup = "*"/g' pyproject.toml
sed -i 's/mapbox-earcut = "^0.12.10"/mapbox-earcut = "*"/g' pyproject.toml
sed -i 's/click = ">=7.2<=9.0"/click = ">=7.2,<=9.0"/g' pyproject.toml
}
build() {