splatmoji-kaomojiya
The package builds from a legitimate project source (GitHub) and installs data (a TSV file) to a user directory; the only issue is a SKIP'd checksum and writing to ~/.local/share, but no untrusted remote code execution or malicious payload is present.
Triggered rules
zero_votes_recent
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
llm_review
An AI model (qwen/qwen3-235b-a22b-2507) reviewed this and agrees it is LOW (confidence 95%): The package builds from a legitimate project source (GitHub) and installs data (a TSV file) to a user directory; the only issue is a SKIP'd checksum and writing to ~/.local/share, but no untrusted remote code execution or malicious payload is present.
PKGBUILD
# WARNING: This PKGBUILD writes to ~/.local/share!!!
# I know this is frowned upon but upstream is archived and even though it says it reads from /usr/share
# there's a bug and it just doesn't. If you're not okay with this, don't install.
# Maintainer: pokemonpasta
_pkgbase=kaomoji-collection
pkgname=splatmoji-kaomojiya
pkgdesc="Splatmoji-formatted version of the Kaomojiya kaomoji collection"
pkgver=r1.2ca1b39
pkgrel=2
arch=(x86_64)
url="https://github.com/kaomojiya-collection/kaomoji-collection"
license=("MIT")
depends=(
splatmoji
)
makedepends=(
jq
)
options=(!strip !debug)
source=("$_pkgbase::git+$url.git")
sha256sums=('SKIP')
_tsv=$pkgname.tsv
pkgver(){
cd "$srcdir/$_pkgbase"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
package(){
cd "$srcdir"
# Converts from JSON format of {keyword: [kao1,kao2,...]} to splatmoji TSV: kao<tab>key1,key2
jq -r 'to_entries[] | .value[] as $kao | [$kao, .key] | @tsv' "$_pkgbase/kaomoji.json" > "$_tsv"
install -dm700 "$pkgdir/$HOME"
install -Dm644 "$_tsv" "$pkgdir/$HOME/.local/share/splatmoji/data/aur/$_tsv"
}
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-08 00:18:08 | Low | 2 |
| 2026-09-07 23:15:20 | Low | 2 |