summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 813fde2039238b33245567286a7561105e5cc986 (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
# Maintainer: Huy Hoang <boydaihungst @gmail.com>
# Contributor: Huy Hoang <boydaihungst @gmail.com>
# Contributor: thoughtsunificator <hidden>
# Contributor: George-1717 <hidden>
# Contributor: kotauskas <hidden>
# Contributor: Guekka <hidden>
# Contributor: exquo <hidden>
# Contributor: poperigby <hidden>
# Original author: GermainZ <hidden>
# Keywords: portal xdg-desktop-portal terminal

pkgname=xdg-desktop-portal-termfilechooser-boydaihungst-git
pkgver=r99.2f56b57
pkgrel=1
pkgdesc='xdg-desktop-portal backend for your favorite terminal file chooser (boydaihungst fork)'
url="https://github.com/boydaihungst/xdg-desktop-portal-termfilechooser"
arch=('x86_64')
license=('MIT')
provides=('xdg-desktop-portal-impl')
depends=('xdg-desktop-portal' 'libinih')
makedepends=('meson' 'scdoc' 'git')
optdepends=(
  'fzf: wrapper included'
  'kitty: default terminal for launching wrappers'
  'lf: wrapper included'
  'nnn: wrapper included'
  'ranger: wrapper included'
  'vifm: wrapper included'
  'yazi: wrapper included'
)
source=(
  "${pkgname}::git+$url.git"
)
sha512sums=('SKIP')
conflicts=(xdg-desktop-portal-termfilechooser-git xdg-desktop-portal-termfilechooser-hunkyburrito-git xdg-desktop-portal-termfilechooser-nosystemd-git)

pkgver() {
  cd "${pkgname}"
  (
    set -o pipefail
    printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
  )
}

build() {
  cd "${pkgname}"
  arch-meson -Dsd-bus-provider=libsystemd build
  ninja -C build
}

package() {
  cd "${pkgname}"
  DESTDIR="${pkgdir}" ninja -C build install
  install -Dm644 -t "$pkgdir/usr/share/licenses/${pkgname}" LICENSE
}