summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: ffa97078a729b910fcc4116f91df62622487836c (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
38
39
40
41
42
43
# Maintainer: AkechiShiro <akechishiro-aur at lahfa dot xyz>

_pyname=ubi_reader
pkgname=python-${_pyname}-git
pkgver=v0.8.6.r2.gdc9075c
pkgrel=1
pkgdesc='Python bindings for the LZO data compression library'
arch=('any')
url="https://github.com/onekey-sec/$_pyname"
license=(GPL)
depends=(python)
conflicts=()
provides=(ubi_reader)
makedepends=(git python-pip python-build python-installer python-wheel python-setuptools python-poetry python-pytest python-pytest-cov)
checkdepends=()
source=("git+https://github.com/onekey-sec/$_pyname")
sha256sums=(SKIP)

pkgver() {
  cd "$_pyname"
  git describe --long --tags --abbrev=7 | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}

prepare() {
    git -C "${srcdir}/${_pyname}" clean -dfx
}

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

# Not working, tests should be made post_install I believe
#check(){
#    cd "$srcdir/$_pyname"
#    # For pytest
#    pytest
#}

package() {
    cd "$_pyname"
    python -m installer --destdir="$pkgdir" dist/*.whl
}