summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: f70a1ffc85947ffef64b600c4e6ae208eb616aab (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
# Maintainer: Thayne McCombs <astrothayne at gmail dot com>
pkgname=dbus-term-launcher
pkgver=0.1.1
pkgrel=1
pkgdesc="Wrapper program to launch arbitrary terminal with Terminal intent API"
url='https://gitlab.com/thayne/dbus-term-launcher'
license=(Apache)
arch=(x86_64)
depends=(glib2)
optdepends=('alacritty: for alacritty launcher'
            'kitty: for kitty launcher'
            'xterm: for xterm launcher'
            'rxvt-unicode: for urxvt launcher')
makedepends=(meson)
source=(https://gitlab.com/thayne/dbus-term-launcher/-/archive/$pkgver/dbus-term-launcher-$pkgver.tar.gz)
sha256sums=('19851c5aa87ec6100fa4adfb55910a1f2832f35db18bf6c1ca21eb851cc974ec')

build() {
  arch-meson $pkgname-$pkgver build
  meson compile -C build
}

package() {
  DESTDIR="$pkgdir" meson install -C build
}