blob: 879744f3b5a3ef0692533811dc5a8e0b7bc15fda (
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.6
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=('2668b6d04df14233b0d019e4211c59276072925d5834e602f3eeb24a9bd6d671')
build() {
arch-meson "$pkgname" build --buildtype=release
meson compile -C build
}
package() {
meson install -C build --destdir "$pkgdir"
}
|