encounty-bin
maintainer Lunix
· 2 votes
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
The package installs a prebuilt AppImage from the project's official GitHub releases, which is a normal distribution method; the icon and desktop file are non-executable assets with SKIP'd checksums, posing minimal risk.
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.
LOW
AI review
llm_review
An AI model (qwen/qwen3-235b-a22b-2507) reviewed this and agrees it is LOW (confidence 95%): The package installs a prebuilt AppImage from the project's official GitHub releases, which is a normal distribution method; the icon and desktop file are non-executable assets with SKIP'd checksums, posing minimal risk.
PKGBUILD
1
# Maintainer: David Hess <davidhess336@gmx.de>
2
pkgname=encounty-bin
3
pkgver=0.19.1
4
pkgrel=1
5
pkgdesc="Free, open-source auto shiny counter for Pokémon shiny hunting."
6
arch=('x86_64')
7
url="https://github.com/ZSleyer/Encounty"
8
license=('AGPL-3.0')
9
depends=('zlib' 'hicolor-icon-theme')
10
options=('!strip') # Do not strip precompiled AppImages
11
12
source=(
13
"encounty-${pkgver}.AppImage::https://github.com/ZSleyer/Encounty/releases/download/v${pkgver}/Encounty-x86_64.AppImage"
14
"encounty.png::https://raw.githubusercontent.com/ZSleyer/Encounty/main/backend/winres/icon.png"
15
"encounty.desktop"
16
)
17
18
# SHA-256 for the AppImage, SKIP for the icon (raw web asset), and SKIP for local desktop file
19
sha256sums=(
20
'3d633a1f156ccc22a077292eae4fe108479ba21bcf29514294685cf54a38befc'
21
'SKIP'
22
'SKIP'
23
)
24
25
package() {
26
# 1. Install the raw AppImage into a dedicated project directory in /opt
27
install -Dm755 "${srcdir}/encounty-${pkgver}.AppImage" "${pkgdir}/opt/${pkgname}/encounty.AppImage"
28
29
# 2. Create the system-wide executable directory if it doesn't exist
30
mkdir -p "${pkgdir}/usr/bin"
31
32
# 3. Create the symlink pointing from /usr/bin back to the AppImage
33
ln -s "/opt/${pkgname}/encounty.AppImage" "${pkgdir}/usr/bin/encounty"
34
35
# 4. Install the icon and desktop files as normal
36
install -Dm644 "${srcdir}/encounty.png" "${pkgdir}/usr/share/icons/hicolor/256x256/apps/encounty.png"
37
install -Dm644 "${srcdir}/encounty.desktop" "${pkgdir}/usr/share/applications/encounty.desktop"
38
}
39
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-03 00:08:14 | LOW | 2 |
| 2026-08-02 00:16:08 | LOW | 2 |
| 2026-08-01 00:11:18 | LOW | 2 |
| 2026-07-31 00:14:10 | LOW | 2 |
| 2026-07-30 00:17:23 | LOW | 2 |
| 2026-07-29 19:12:33 | LOW | 2 |