mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
20 lines
489 B
Bash
20 lines
489 B
Bash
#
|
|
# maintainer: Giuseppe Calà <jiveaxe@gmail.com>
|
|
|
|
pkgname=mathjax
|
|
pkgver=2.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/v2.1-latest.tar.gz')
|
|
md5sums=('fcc8854146cdea83ded07137de441785')
|
|
|
|
package() {
|
|
mkdir -p $pkgdir/usr/share
|
|
mv $srcdir/MathJax-* $pkgdir/usr/share/mathjax
|
|
}
|
|
|