blob: 9739d926b3124a1ac56be8b3f90364ce2d3227fc (
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
|
# Maintainer: IntoTheGNU <intothegnu@proton.me>
pkgname=xdg-desktop-portal-termfilechooser-nosystemd-git
pkgver=r4.71dc7ab
pkgrel=1
pkgdesc='xdg-desktop-portal backend for your favorite terminal file chooser'
url="https://github.com/GermainZ/xdg-desktop-portal-termfilechooser"
arch=('x86_64')
license=('MIT')
provides=('xdg-desktop-portal-impl' 'xdg-desktop-portal-termfilechooser' 'xdg-desktop-portal-termfilechooser-git')
conflicts=('xdg-desktop-portal-termfilechooser-git' 'xdg-desktop-portal-termfilechooser-nosystemd')
depends=('xdg-desktop-portal' 'libinih')
makedepends=('meson' 'scdoc')
optdepends=(
'ranger: default for choosing files'
'kitty: default terminal for launching ranger'
)
source=(
"${pkgname}::git+https://github.com/GermainZ/xdg-desktop-portal-termfilechooser.git"
)
sha512sums=('SKIP')
pkgver () {
cd "${pkgname}"
(
set -o pipefail
git describe --long 2>/dev/null | sed 's/\([^-]*-g\)/r\1/;s/-/./g' ||
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
)
}
build() {
cd "${pkgname}"
arch-meson -Dsd-bus-provider=libelogind -Dsystemd=disabled build
ninja -C build
}
package() {
cd "${pkgname}"
DESTDIR="${pkgdir}" ninja -C build install
install -Dm644 -t "$pkgdir/usr/share/licenses/${pkgname}" LICENSE
}
|