mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
17 lines
471 B
Bash
17 lines
471 B
Bash
pkgname=mathjax
|
|
pkgver=2.7.0
|
|
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")
|
|
sha256sums=('4944dd3995417c7692b64462698054760d38ff72175f66e2f2a007c5031d5927')
|
|
|
|
package() {
|
|
mkdir -p $pkgdir/usr/share
|
|
mv $srcdir/MathJax-* $pkgdir/usr/share/mathjax
|
|
}
|
|
|