blob: 874118a0f634bd5180cbba78c5b0b753b0dc9014 (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
# Maintainer: Peter Weber <peter.weber@mailbox.org>
# Contributor: Manuel Hüsers <manuel.huesers@uni-ol.de>
# Contributor: Fernando Fernandez <fernando@softwareperonista.com.ar>
# Contributor: Fabian Bornschein <fabiscafe@archlinux.org>
# Contributor: Jan de Groot <jgc@archlinux.org>
# Contributor: Jan Alexander Steffens (heftig) <heftig@archlinux.org>
# upstream patches:
# https://src.fedoraproject.org/cgit/rpms/gnome-terminal.git
# https://github.com/debarshiray/gnome-terminal
pkgname=gnome-terminal-transparency
_pkgname=gnome-terminal
pkgver=3.54.4
pkgrel=1
pkgdesc="The GNOME Terminal Emulator with background transparency"
url="https://wiki.gnome.org/Apps/Terminal"
arch=(x86_64)
license=(
# Program
GPL-3.0-or-later
# Documentation
CC-BY-SA-3.0
GPL-3.0-only
# Appstream-data
GFDL-1.3-only
)
depends=(
dconf
gcc-libs
glib2
glibc
gsettings-desktop-schemas
gtk3
hicolor-icon-theme
libhandy
libx11
pango
util-linux-libs
vte3
)
makedepends=(
docbook-xsl
glib2-devel
gnome-shell
libnautilus-extension
meson
yelp-tools
)
optdepends=(
"libnautilus-extension: Nautilus integration"
)
provides=("$_pkgname=$pkgver")
conflicts=("$_pkgname")
groups=(gnome-extra)
changelog=package.changelog
source=(
https://gitlab.gnome.org/GNOME/$_pkgname/-/archive/$pkgver/$_pkgname-$pkgver.tar.gz
transparency.patch
)
b2sums=(
'59a12f8c976e95db8b935e5131706f1af3ffd15ef889141de3ce692f7c3e031a78f1f1161ecf8c4530165024b82a4b683e8665808140062ff9b39bbef708ffb3'
'd11421892660c0302b8a0f4a9897cd74d54777a46f783e434ee11902819f805672a822735a8c2fe118043a4c3b78c22b0ad8afd71fc8322db579254fcda16fef'
)
prepare() {
cd $_pkgname-$pkgver
patch -Np1 -i ../transparency.patch
}
build() {
local meson_options=(
-D b_lto=false
)
arch-meson $_pkgname-$pkgver build "${meson_options[@]}"
meson compile -C build
}
check() {
meson test -C build --print-errorlogs
}
package() {
meson install -C build --destdir "$pkgdir"
}
|