blob: 5ecd21c8d3a7e355974825e8f1ca880b042b8a6f (
plain)
1 # Description: A JavaScript display engine for mathematics that works in all browsers
2 # URL: https://www.mathjax.org/
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: fontconfig xorg-mkfontscale
5
6 name=mathjax
7 version=3.2.0
8 release=1
9 source=(https://github.com/mathjax/MathJax/archive/$version/MathJax-$version.tar.gz)
10
11 build() {
12 mkdir -p $PKG/usr/share/fonts
13 cp -r $SRC/MathJax-$version/es5 $PKG/usr/share/mathjax
14 }
|