blob: b2308b72187c05d7315fbbc76354881d2231e713 (
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
|
pkgname=gnome-terminal-git
_pkgname=gnome-terminal
pkgver=3.41.90+29+g9100fd9a
pkgrel=1
pkgdesc="The GNOME Terminal Emulator"
url="https://wiki.gnome.org/Apps/Terminal"
arch=(x86_64)
license=(GPL)
depends=('vte3-git' 'gsettings-desktop-schemas')
makedepends=('docbook-xsl' 'git' 'gnome-shell' 'libnautilus-extension' 'meson' 'yelp-tools')
source=("git+https://gitlab.gnome.org/GNOME/gnome-terminal.git")
b2sums=('SKIP')
pkgver() {
cd $_pkgname
git describe --tags | sed 's/-/+/g'
}
build() {
arch-meson $_pkgname build
ninja -C build
}
check() {
meson test -C build --print-errorlogs
}
package() {
meson install -C build --destdir "$pkgdir"
}
|