mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 10:32:13 +08:00
17 lines
535 B
Bash
17 lines
535 B
Bash
pkgname=mathjax
|
|
pkgver=2.5.3
|
|
pkgrel=1
|
|
pkgdesc='An open source JavaScript display engine for mathematics that works in all modern browsers'
|
|
url='http://www.mathjax.org/'
|
|
arch=('any')
|
|
license=('apache')
|
|
options=('!strip')
|
|
source=("https://github.com/mathjax/MathJax/archive/${pkgver}.tar.gz")
|
|
sha512sums=('007b3d4e7d4224746ea8996838f6d208ee6dd04a6c2e3dc38b6e7ad83421732d4f5c5b9b6714183d0a25a46fdc1a9cd73a6ca769f29dbe3f36c79a5ca0ee1178')
|
|
|
|
package() {
|
|
mkdir -p $pkgdir/usr/share
|
|
mv $srcdir/MathJax-* $pkgdir/usr/share/mathjax
|
|
}
|
|
|