termite-git
MEDIUM
maintainer barbuk
1 votes
scanned 2026-09-06 17:12:21.241024
Why flagged
This package was orphaned and re-adopted within the last 30 days — a window where ownership transfers can introduce malicious changes.
Triggered rules
Medium
Recently orphaned & re-adopted
orphaned_readopted
This package was orphaned and re-adopted within the last 30 days — a window where ownership transfers can introduce malicious changes.
PKGBUILD
1
# Maintainer:
2
3
_pkgname="termite"
4
pkgname="$_pkgname-git"
5
pkgver=16.9.r2.gbd9945f
6
pkgrel=1
7
pkgdesc='A simple VTE-based terminal'
8
url="https://github.com/aperezdc/termite"
9
license=('LGPL-2.0-or-later')
10
arch=('x86_64')
11
12
depends=(
13
'gnutls'
14
'gtk3'
15
'pcre2'
16
'vte-common'
17
)
18
makedepends=(
19
'git'
20
'glib2-devel'
21
'gperf'
22
'meson'
23
)
24
25
provides=("$_pkgname=${pkgver%%.r*}")
26
conflicts=("$_pkgname")
27
28
_pkgsrc="$_pkgname"
29
source=(
30
"$_pkgsrc"::"git+$url.git"
31
"aperezdc.vte"::"git+https://github.com/aperezdc/vte.git"
32
)
33
sha256sums=(
34
'SKIP'
35
'SKIP'
36
)
37
38
backup=(etc/xdg/termite/config)
39
40
prepare() {
41
local _vte_hash=$(grep -Po '(?<=revision = )[a-f0-9]+$' "$_pkgsrc/subprojects/vte.wrap")
42
ln -s "$srcdir/aperezdc.vte" "$_pkgsrc/subprojects/vte"
43
git -c advice.detachedHead=false -C "aperezdc.vte" checkout -f "$_vte_hash"
44
}
45
46
pkgver() {
47
cd "$_pkgsrc"
48
git describe --long --tags --exclude='*[a-zA-Z][a-zA-Z]*' \
49
| sed -E 's/^v//;s/([^-]*-g)/r\1/;s/-/./g'
50
}
51
52
build() {
53
arch-meson build "$_pkgsrc"
54
meson compile -C build
55
}
56
57
package() {
58
meson install -C build --skip-subprojects vte --destdir "$pkgdir"
59
}
60
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-06 17:12:21 | Medium | 1 |
| 2026-06-18 16:11:54 | Clean | 0 |