blob: 68f03e7fcd7f21687ed2fe823a20cac70f7eeb22 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Maintainer: Octopus118 <idlansdowne at gmail dot com>
pkgname=python-pyromat
_name=${pkgname#python-}
pkgver=2.2.6
pkgrel=2
pkgdesc="Thermodynamic properties in Python"
url="https://github.com/chmarti1/PYroMat"
arch=('any')
license=('GPL-3.0-only')
depends=('python-numpy')
makedepends=('python-build' 'python-installer' 'python-wheel' 'python-setuptools')
source=("git+https://github.com/chmarti1/PYroMat#tag=v$pkgver")
sha256sums=('7705459a33604dd1b567dae9df6caa5cfcb687c7aa3b735c6160486e4b62a79c')
build() {
python -m build -wno "$srcdir" "$srcdir/PYroMat"
}
package() {
python -m installer -d "$pkgdir" "$srcdir/pyromat-$pkgver-py3-none-any.whl"
}
|