cherry-studio-desktop-bin
maintainer czyt
· 1 votes
· scanned 2026-08-18 01:38:17.845211
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: czyt <czytcn@gmail.com>
2
3
pkgname=cherry-studio-desktop-bin
4
pkgver=2.0.7
5
pkgrel=1
6
pkgdesc="AI productivity studio with smart chat, autonomous agents, and 300+ assistants"
7
arch=('x86_64' 'aarch64')
8
url="https://cherryai.com"
9
license=('custom')
10
11
depends=(
12
'alsa-lib'
13
'at-spi2-core'
14
'cairo'
15
'dbus'
16
'expat'
17
'gcc-libs'
18
'glib2'
19
'glibc'
20
'gtk3'
21
'libcups'
22
'libdrm'
23
'libevdev'
24
'libnotify'
25
'libsecret'
26
'libx11'
27
'libxcb'
28
'libxcomposite'
29
'libxdamage'
30
'libxext'
31
'libxfixes'
32
'libxkbcommon'
33
'libxrandr'
34
'libxss'
35
'libxtst'
36
'mesa'
37
'nspr'
38
'nss'
39
'pango'
40
'systemd-libs'
41
'util-linux-libs'
42
'wayland'
43
'xdg-utils'
44
)
45
optdepends=(
46
'libayatana-appindicator: system tray integration'
47
'ollama: use local LLMs'
48
)
49
makedepends=('libarchive')
50
provides=("cherry-studio=${pkgver}")
51
conflicts=(
52
'cherry-studio'
53
'cherry-studio-bin'
54
'cherry-studio-electron-bin'
55
'cherry-studio-git'
56
'cherry-studio-git-c'
57
)
58
options=('!debug' '!strip')
59
60
_deb_x86_64="Cherry-Studio-${pkgver}-amd64.deb"
61
_deb_aarch64="Cherry-Studio-${pkgver}-arm64.deb"
62
source_x86_64=(
63
"${_deb_x86_64}::https://github.com/CherryHQ/cherry-studio/releases/download/v${pkgver}/${_deb_x86_64}"
64
)
65
source_aarch64=(
66
"${_deb_aarch64}::https://github.com/CherryHQ/cherry-studio/releases/download/v${pkgver}/${_deb_aarch64}"
67
)
68
noextract=("${_deb_x86_64}" "${_deb_aarch64}")
69
sha256sums_x86_64=('2e3703e7291a695952edde7f34c61e0fccb4a821a5218c4726857adb8b31f334')
70
sha256sums_aarch64=('adaa3460dfc4ea1cdb6a1fdc4bf14b5907898a4a2b7a42d083eb316fba9d501c')
71
72
package() {
73
local deb_var="_deb_${CARCH}"
74
local deb="${!deb_var}"
75
local data_archive
76
77
data_archive="$(bsdtar -tf "${srcdir}/${deb}" | sed -n '/^data\.tar\./{p;q;}')"
78
if [[ -z "${data_archive}" ]]; then
79
error "Could not find data.tar.* in ${deb}"
80
return 1
81
fi
82
83
bsdtar -xOf "${srcdir}/${deb}" "${data_archive}" |
84
bsdtar --no-same-owner -xf - -C "${pkgdir}"
85
86
install -dm755 "${pkgdir}/usr/bin"
87
ln -s '/opt/Cherry Studio/CherryStudio' "${pkgdir}/usr/bin/CherryStudio"
88
89
# Keep the Chromium sandbox fallback used by the upstream Electron package.
90
chmod 4755 "${pkgdir}/opt/Cherry Studio/chrome-sandbox"
91
92
install -Dm644 \
93
"${pkgdir}/opt/Cherry Studio/resources/app.asar.unpacked/resources/cherry-studio/license.html" \
94
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.html"
95
96
# Debian package metadata is not used on Arch Linux.
97
rm -r "${pkgdir}/usr/share/doc"
98
}
99
Changes since previous scan
--- PKGBUILD @ 2026-08-14 00:03+++ PKGBUILD @ 2026-08-18 01:38@@ -1,8 +1,8 @@ # Maintainer: czyt <czytcn@gmail.com> pkgname=cherry-studio-desktop-bin-pkgver=2.0.5-pkgrel=2+pkgver=2.0.7+pkgrel=1 pkgdesc="AI productivity studio with smart chat, autonomous agents, and 300+ assistants" arch=('x86_64' 'aarch64') url="https://cherryai.com"@@ -66,8 +66,8 @@ "${_deb_aarch64}::https://github.com/CherryHQ/cherry-studio/releases/download/v${pkgver}/${_deb_aarch64}" ) noextract=("${_deb_x86_64}" "${_deb_aarch64}")-sha256sums_x86_64=('00365d82b6ae2ee2818ee835545c4296b2688b931adb1008ee1f203aa00a78e6')-sha256sums_aarch64=('91db5a678b75e73382490e797887fc0a061200616bd02cfa0974f95854d4bf4b')+sha256sums_x86_64=('2e3703e7291a695952edde7f34c61e0fccb4a821a5218c4726857adb8b31f334')+sha256sums_aarch64=('adaa3460dfc4ea1cdb6a1fdc4bf14b5907898a4a2b7a42d083eb316fba9d501c') package() { local deb_var="_deb_${CARCH}"Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-18 01:38:17 | LOW | 1 |
| 2026-08-14 00:03:41 | CLEAN | 2 |
| 2026-08-13 15:26:23 | LOW | 1 |