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