malama
LOW
maintainer Magpiny
0 votes
scanned 2026-08-25 13:26:42.022164
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: Magpiny <magpinyb@proton.me>
2
# Contributor: Wanjare S. <samuelwanjare@protonmail.com>
3
4
pkgname=malama
5
pkgver=0.3.0
6
pkgrel=1
7
pkgdesc="Native Linux chat client for local LLMs — no cloud, no browser, no compromise."
8
arch=('x86_64')
9
url="https://magpiny.github.io/malama"
10
license=('GPL-3.0-or-later')
11
depends=(
12
'wxwidgets-gtk3'
13
'sqlite'
14
'poppler'
15
'libarchive'
16
'pugixml'
17
'libpng'
18
'libjpeg-turbo'
19
'spdlog'
20
'boost-libs'
21
)
22
makedepends=(
23
'cmake'
24
'ninja'
25
'git'
26
'gcc'
27
'pkgconf'
28
'boost'
29
'appstream'
30
)
31
optdepends=(
32
'ollama: default local LLM inference server'
33
)
34
provides=("${pkgname}")
35
conflicts=("${pkgname}-git")
36
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/magpiny/malama/archive/refs/tags/v${pkgver}.tar.gz")
37
sha256sums=('390ea6dbddf82e26f339821cf608f8690843967aa311a896eb3f0695a87d29d5')
38
39
build() {
40
cd "${srcdir}/${pkgname}-${pkgver}"
41
cmake -B build -G Ninja \
42
-DCMAKE_BUILD_TYPE=Release \
43
-DCMAKE_INSTALL_PREFIX=/usr \
44
-DBUILD_TESTING=OFF
45
cmake --build build --parallel
46
}
47
48
package() {
49
cd "${srcdir}/${pkgname}-${pkgver}"
50
DESTDIR="${pkgdir}" cmake --install build
51
52
# Ensure icon, desktop entry, AppStream metadata and license are in place
53
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
54
if [ -f assets/malama.png ]; then
55
install -Dm644 assets/malama.png "${pkgdir}/usr/share/icons/hicolor/256x256/apps/malama.png"
56
fi
57
if [ -f assets/malama.svg ]; then
58
install -Dm644 assets/malama.svg "${pkgdir}/usr/share/icons/hicolor/scalable/apps/malama.svg"
59
fi
60
if [ -f assets/org.magpiny.malama.metainfo.xml ]; then
61
install -Dm644 assets/org.magpiny.malama.metainfo.xml "${pkgdir}/usr/share/metainfo/org.magpiny.malama.metainfo.xml"
62
fi
63
}
64
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-25 13:26:42 | Low | 1 |