gooeypi-bin
maintainer duanluan
· 0 votes
· scanned 2026-08-18 03:38:23.746777
LOW
View on AUR ↗
Why flagged
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
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.
PKGBUILD
1
# Maintainer: duanluan <duanluan@outlook.com>
2
3
pkgname=gooeypi-bin
4
_pkgname=gooeypi
5
_appname=GooeyPi
6
pkgver=1.1.11
7
pkgrel=1
8
pkgdesc='Desktop workspace for Pi, OMP, and Prime Agent (prebuilt binary)'
9
arch=('x86_64' 'aarch64')
10
url='https://github.com/am-will/gooey-pi'
11
license=('MIT')
12
depends=(
13
'alsa-lib'
14
'at-spi2-core'
15
'cairo'
16
'dbus'
17
'expat'
18
'glib2'
19
'glibc'
20
'gtk3'
21
'hicolor-icon-theme'
22
'libcups'
23
'libgcc'
24
'libnotify'
25
'libsecret'
26
'libstdc++'
27
'libx11'
28
'libxcb'
29
'libxcomposite'
30
'libxdamage'
31
'libxext'
32
'libxfixes'
33
'libxkbcommon'
34
'libxrandr'
35
'libxss'
36
'mesa'
37
'nspr'
38
'nss'
39
'pango'
40
'systemd-libs'
41
'util-linux-libs'
42
'xdg-utils'
43
)
44
optdepends=(
45
'org.freedesktop.secrets: secure storage backend'
46
'pipewire: screen sharing under Wayland'
47
'kde-cli-tools: file deletion support on KDE'
48
'trash-cli: file deletion fallback'
49
)
50
provides=("${_pkgname}=${pkgver}")
51
conflicts=("${_pkgname}")
52
options=('!strip')
53
source=('LICENSE')
54
source_x86_64=("${_appname}-${pkgver}-linux-x64.pacman::https://github.com/am-will/gooey-pi/releases/download/v${pkgver}/${_appname}-${pkgver}-linux-x64.pacman")
55
source_aarch64=("${_appname}-${pkgver}-linux-aarch64.pacman::https://github.com/am-will/gooey-pi/releases/download/v${pkgver}/${_appname}-${pkgver}-linux-aarch64.pacman")
56
noextract=("${_appname}-${pkgver}-linux-x64.pacman" "${_appname}-${pkgver}-linux-aarch64.pacman")
57
sha256sums=('8afbc591f620720580c00279b5d04d6d700398c4f4f53e54217a7c3eeb50689e')
58
sha256sums_x86_64=('a229ab96e113792ab6f959292aa8e44ad3dea404d7e3969b627e43dffb3f6900')
59
sha256sums_aarch64=('5357723970f5bc3668e5e29c0b021536f8dd47bf6cbd9e3eefb7d3c4444c5920')
60
61
package() {
62
local upstream_arch
63
local archive
64
65
case "${CARCH}" in
66
x86_64) upstream_arch='x64' ;;
67
aarch64) upstream_arch='aarch64' ;;
68
*)
69
printf 'unsupported architecture: %s\n' "${CARCH}" >&2
70
return 1
71
;;
72
esac
73
74
archive="${srcdir}/${_appname}-${pkgver}-linux-${upstream_arch}.pacman"
75
bsdtar -C "${pkgdir}" \
76
--exclude='.BUILDINFO' \
77
--exclude='.INSTALL' \
78
--exclude='.MTREE' \
79
--exclude='.PKGINFO' \
80
-xf "${archive}"
81
82
install -dm755 "${pkgdir}/usr/bin"
83
ln -s "/opt/${_appname}/${_pkgname}" \
84
"${pkgdir}/usr/bin/${_pkgname}"
85
86
chmod 0755 "${pkgdir}/opt/${_appname}/chrome-sandbox"
87
install -Dm644 "${srcdir}/LICENSE" \
88
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
89
}
90
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-18 03:38:23 | LOW | 1 |