upgpkg: xdg-terminal-exec-0.14.0-1: initial upload

This commit is contained in:
Christian Schendel 2025-12-11 20:38:59 +01:00
commit 469ded7a78
Signed by: doppelhelix
GPG key ID: 5874D2437CD5BBB3
7 changed files with 117 additions and 0 deletions

39
PKGBUILD Normal file
View file

@ -0,0 +1,39 @@
# Maintainer: Christian Schendel <doppelhelix@gmail.com>
# Contributor: Max Gautier <mg@max.gautier.name>
pkgname=xdg-terminal-exec
pkgver=0.14.0
pkgrel=1
pkgdesc="Proposed standard to launching desktop apps with Terminal=true"
arch=(any)
url="https://gitlab.freedesktop.org/Vladimir-csp/$pkgname"
license=(
GPL-3.0-or-later
)
depends=(
sh
)
makedepends=(
git
scdoc
)
checkdepends=(
bats
)
source=(
"$pkgname-$pkgver::git+$url.git#tag=v$pkgver"
)
b2sums=('1c0219b58384177640aaec2082ffea1c7b25bf5b45fd8bb529147f0d2fae9f465dfdea1336c28ddd89e325438364cac8514f1c3f4071749351bc280ec8427e9b')
check() {
cd "$pkgname-$pkgver"
bats "test/"
}
build() {
make -C "$pkgname-$pkgver"
}
package() {
make -C "$pkgname-$pkgver" prefix="$pkgdir/usr" install
}