blob: e88003d909b90e35732226a13d109a06033e2254 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# Maintainer: Yufan You <ouuansteve at gmail>
_pkgname=mathlibtools
pkgname=python-$_pkgname
pkgver=1.3.2
pkgrel=1
pkgdesc='This package contains leanproject, a supporting tool for Lean mathlib'
arch=('any')
url="https://github.com/leanprover-community/mathlib-tools"
license=('Apache-2.0')
depends=(
'python-toml'
'python-pygithub'
'python-certifi'
'python-gitpython'
'python-requests'
'python-click'
'python-tqdm'
'python-networkx'
'python-pydot'
'python-yaml'
'python-atomicwrites'
)
makedepends=('python-setuptools')
optdepends=('lean-community')
source=("https://pypi.io/packages/source/${_pkgname:0:1}/${_pkgname}/$_pkgname-$pkgver.tar.gz")
sha256sums=('9a49f4cb7355fda72792a5738bcc5df927b1e102efc719adfbe16db199a0ac6b')
build() {
cd "$_pkgname-$pkgver"
python setup.py build
}
package() {
cd "$_pkgname-$pkgver"
python setup.py install --root="$pkgdir" --optimize=1 --skip-build
}
|