summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 30ea9d449715836e759ecb527b639ed659fdf91b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
pkgname=prettymath-git
_gitname=prettymath
pkgver=1.0
pkgrel=1
pkgdesc="Write prettified mathematical formulas to stdout using the magic of python and sympy"
arch=('any')
url=https://github.com/Quoteme/prettymath/
license=('GPL3')
depends=('python' 'python-sympy')
makedepends=('git')
source=(git+"https://github.com/Quoteme/${_gitname}.git")
sha256sums=('SKIP')
build() {
	cd ${_gitname}
	python setup.py build
}
package() {
	cd ${_gitname}
	python setup.py install --root="$pkgdir" --optimize=1 --skip-build
}
# Maintainer: Luca Leon Happel <lucahappel99@gmail.com>