byobu-bin
maintainer celinebeuchat
· 0 votes
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
The package builds from the official project Git repository, applies minor configuration tweaks, and includes no remote code execution or unverifiable prebuilt binaries; the flagged low votes and recent upload are noted but do not indicate malice.
Triggered rules
LOW
Few votes, recently uploaded
zero_votes_recent
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
LOW
AI review
llm_review
An AI model (qwen/qwen3-235b-a22b-2507) reviewed this and agrees it is LOW (confidence 90%): The package builds from the official project Git repository, applies minor configuration tweaks, and includes no remote code execution or unverifiable prebuilt binaries; the flagged low votes and recent upload are noted but do not indicate malice.
PKGBUILD
1
# Maintainer: Alexander F. Rødseth <xyproto@archlinux.org>
2
# Contributor: Daniel Landau <aur@landau.fi>
3
# Contributor: Justin Coffman <jcoffman at datasecu dot red>
4
# Contributor: Sibren Vasse <arch at sibrenvasse dot nl>
5
# Contributor: oozyslug <oozyslug at gmail dot com>
6
# Contributor: Justin Coffman <jcoffman at datasecu dot red>
7
8
pkgname=byobu-bin
9
pkgver=7.15
10
pkgrel=1
11
pkgdesc='Enhanced tmux'
12
arch=(any)
13
url='https://byobu.org/'
14
license=(GPL-3.0-only)
15
depends=(libnewt python tmux)
16
makedepends=(gettext git setconf)
17
source=("git+https://github.com/dustinkirkland/byobu#tag=$pkgver" 'parser')
18
b2sums=('d457f5d382be7099d7c54c7e63271615e462ba4622b57309572c0a94ee03f1b1e3289b1c12e9db12d56b4b88cd8f578db981d7fc6ae240e782f9e9b0b6154d34')
19
20
prepare() {
21
cd byobu-bin
22
23
24
# Adjust path to SOCKETDIR
25
setconf etc/byobu/socketdir SOCKETDIR '"/tmp/screens"'
26
27
# Tweak the two .desktop files that comes with Byobu
28
cd usr/share/byobu/desktop
29
setconf byobu.desktop Name 'Byobu Gnome Terminal'
30
setconf byobu.desktop Icon=/usr/share/byobu/pixmaps/byobu.svg
31
setconf byobu.desktop \
32
Exec "gnome-terminal --name=us.kirkland.terminals.byobu --class=us.kirkland.terminals.byobu -- byobu"
33
setconf byobu.desktop.old Icon=/usr/share/byobu/pixmaps/byobu.svg
34
}
35
36
build() {
37
sudo "$srcdir/parser"
38
cd byobu-bin
39
autoreconf -fiv
40
./configure --prefix=/usr --sysconfdir=/etc
41
make
42
}
43
44
package() {
45
DESTDIR="$pkgdir" make -C "byobu-bin" install
46
47
# Move .desktop files to /usr/share/applications
48
install -d "$pkgdir/usr/share/applications"
49
mv "$pkgdir/usr/share/byobu/desktop/byobu.desktop" \
50
"$pkgdir/usr/share/applications/byobu.desktop"
51
mv "$pkgdir/usr/share/byobu/desktop/byobu.desktop.old" \
52
"$pkgdir/usr/share/applications/byobu_old.desktop"
53
rmdir "$pkgdir/usr/share/byobu/desktop"
54
}
55
56
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-03 00:08:14 | LOW | 2 |
| 2026-08-02 00:16:08 | LOW | 2 |
| 2026-08-01 11:20:22 | LOW | 2 |