summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: fe7e82c320f6137a75c2743607374db62277f930 (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
# Maintainer:  GI Jack <GI_Jack@hackermail.com>

pkgname='python-ecpy'
_pkgname='ECPy'
pkgver=1.2.5
pkgrel=2
arch=('any')
pkgdesc='Pure Python Elliptic Curve Library for Python'
url='https://github.com/ubinity/ECPy'
license=('custom')
source=("${pkgname}-${pkgver}::https://github.com/cslashm/${_pkgname}/archive/1.2.5.tar.gz")
sha256sums=('02a2e990fe4b9c51a5a2d7518439ad80e5d839c931f76fa5144c50543e6a103f')
depends=('python' 'python-future')
makedepends=('python-build' 'python-installer' 'python-wheel')

build() {
    cd "${_pkgname}-${pkgver}"
    python -m build --wheel --no-isolation
}

package() {
    cd "${_pkgname}-${pkgver}"
    python -m installer --destdir="$pkgdir" dist/*.whl
    # Install License
    install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
    # Install Documentation
    install -D -m644 README.rst "${pkgdir}/usr/share/doc/${pkgname}/README.rst"
}