summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: cc420004b011b282d351eeaac8436f725fbdb049 (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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# Shellcheck: shell=bash
# -*- sh -*-

# Contributor: Klaus Alexander Seistrup <$(echo 0x1fd+d59decfa=40 | tr 0-9+a-f=x ka-i@p-u.l)>

pkgname='python-libipld-git'
_pkgname="${pkgname/-git/}"
pkgdesc='Fast Python library to work with IPLD: CAR, CID, DAG-CBOR, DAG-JSON, DAG-PB, multibase (development version)'
pkgver=3.4.1.r4.g88fe80f
pkgrel=1
url='https://github.com/MarshalX/python-libipld'
arch=('aarch64' 'x86_64')
license=('MIT')
makedepends=(
  'git'
  'python-build'
  'python-installer'
  'python-maturin'
  'python-wheel'
)
depends=(
  'glibc'
  'libgcc'
  'python'
)
provides=("$_pkgname")
conflicts=("${provides[@]}")
source=("git+$url.git")
sha256sums=('SKIP')

pkgver() {
  cd "$_pkgname"

  git describe --tags --long | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}

build() {
  cd "$_pkgname"

  export PYTHONWARNINGS=ignore
  python -m build --wheel --no-isolation
}

package() {
  cd "$_pkgname"

  python -m installer --destdir="$pkgdir" dist/*.whl

  install -Dm0644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
  install -Dm0644 -t "$pkgdir/usr/share/doc/$pkgname" README.md

  for _dir in doc licenses; do
    pushd "$pkgdir/usr/share/$_dir"
    ln -fsr "$pkgname" "$_pkgname"
    popd
  done > /dev/null
}

# eof