blob: f26d6db5ce569c853e7edbd29481fbadd5b35878 (
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.3
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=(
'30acfae70e622d8143369688b702c0fe50d2169de6902a1647abc46ca405b75c7ad8cff24c812bf9269c54b4f20078eebfc537ad66ac8127dfe0b7a3dcbe232b'
'7026bcf1e7b0bb9ce40bf6b50524ab9f1c8e09f9cbd63306b0bf26efa3519ccbb5b71f09020a5972d19d22d2abaf513d724285b78e9ca3f9c8e5cddd6f6ead7c'
)
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"
}
|