podium-git
The package builds from the project's own git repository, uses frozen lockfile for dependency integrity, and installs only the built Electron app; the 'SKIP' checksum is acceptable for git sources, and all actions are transparent and expected for an AUR package.
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 the project's own git repository, uses frozen lockfile for dependency integrity, and installs only the built Electron app; the 'SKIP' checksum is acceptable for git sources, and all actions are transparent and expected for an AUR package.
PKGBUILD
# Maintainer: Lucasion <ion@ionnet.dev>
pkgname=podium-git
_pkgname=podium
pkgver=0.1.0.r5.g2f12869
pkgrel=1
pkgdesc='Open-source, local-first game clipping: an instant replay buffer, global hotkeys and a clip library'
arch=('x86_64')
url='https://github.com/LucasionGS/podium'
license=('GPL-3.0-or-later')
# Electron's runtime libraries (as in electron-builder.yml); gpu-screen-recorder does the capturing.
depends=('gtk3' 'nss' 'libxss' 'libnotify' 'alsa-lib' 'at-spi2-core' 'libxkbcommon' 'mesa' 'libcups'
'gpu-screen-recorder')
makedepends=('git' 'nodejs' 'pnpm' 'libarchive')
provides=("$_pkgname")
conflicts=("$_pkgname")
# Electron ships prebuilt, already-stripped binaries.
options=('!strip' '!debug')
source=("$_pkgname::git+https://github.com/LucasionGS/podium.git")
sha256sums=('SKIP')
pkgver() {
cd "$_pkgname"
printf '%s.r%s.g%s' "$(node -p 'require("./package.json").version')" \
"$(git rev-list --count HEAD)" "$(git rev-parse --short=7 HEAD)"
}
prepare() {
cd "$_pkgname"
pnpm install --frozen-lockfile
}
build() {
cd "$_pkgname"
# A reused source dir may still hold the package of an older version.
rm -rf dist
pnpm dist:pacman --publish never
}
package() {
cd "$_pkgname"
# Install what electron-builder packaged, minus its pacman metadata; this PKGBUILD provides its own.
bsdtar -xf dist/*.pacman -C "$pkgdir" --exclude .PKGINFO --exclude .MTREE --exclude .INSTALL --exclude .BUILDINFO
# electron-builder's install script creates this link at install time; ship it in the package instead.
install -d "$pkgdir/usr/bin"
ln -s "/opt/Podium/$_pkgname" "$pkgdir/usr/bin/$_pkgname"
}
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-25 13:11:58 | Low | 2 |