summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 5f55915468f92d6263d81d386fed0b8e5ad3fecb (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
# -*- sh -*-

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

pkgname='isd-git'
_pkgname="${pkgname/-git/}"
_srcname="${_pkgname/python-/}"
pkgver=0.4.1.r3.g92e99ec
pkgrel=3
pkgdesc='Interactive TUI for systemd units (latest commit)'
arch=('any')
url='https://github.com/isd-project/isd'
license=('GPL-3.0-or-later')  # SPDX-License-Identifier: GPL-3.0-or-later
makedepends=(
  'git'
  'python-build'
  'python-hatchling'
  'python-installer'
  'python-wheel'
)
depends=(
  'hicolor-icon-theme'  # needed for hicolor theme hierarchy
  'python>=3.11'
  'python-pfzy>=0.3.4'
  'python-pydantic-settings>=2.7.0'
  'python-textual>=0.89.1'
  'python-types-pyyaml>=6.0.12.20241221'
  'python-xdg-base-dirs>=6.0.0'
)
source=("git+$url.git")
provides=("$_pkgname"{,-tui})
conflicts=("$_pkgname"{,-tui})
sha256sums=('SKIP')

pkgver() {
  cd "$_srcname"

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

build() {
  cd "$_srcname"

  python -m build --wheel --no-isolation
}

package() {
  cd "$_srcname"

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

  install -vDm0644 -t "$pkgdir/usr/share/doc/$pkgname" README.md
}

# eof