blob: e7c54cc041d743c983c695c4002c33020d3103cf (
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: Piroro-hs
pkgname=ptyxis
pkgver=47.5
pkgrel=1
pkgdesc='A terminal for a container-oriented desktop'
arch=('x86_64')
url='https://gitlab.gnome.org/chergert/ptyxis'
license=('GPL-3.0-or-later')
groups=()
depends=('dconf'
'gcc-libs'
'glib2'
'glibc'
'gtk4'
'hicolor-icon-theme'
'json-glib'
'libadwaita'
'libportal'
'libportal-gtk4'
'pango'
'vte4')
makedepends=('git'
'glib2-devel'
'meson')
optdepends=()
provides=()
conflicts=()
replaces=()
backup=()
source=("$pkgname::git+$url#tag=$pkgver")
sha256sums=('af8c414be27ab2b532b926c73c63a72643152e09021c68cbf91bcf3288bcb6f7')
build() {
arch-meson "$pkgname" build --buildtype=release
meson compile -C build
}
package() {
meson install -C build --destdir "$pkgdir"
}
|