astramarket-git
maintainer dim-aur
· 0 votes
· scanned 2026-08-18 00:03:42.021799
LOW
View on AUR ↗
Why flagged
The package builds from the project's own git repository, which is normal for AUR packages; the low severity is due to few votes and recent upload, not malicious content.
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 builds from the project's own git repository, which is normal for AUR packages; the low severity is due to few votes and recent upload, not malicious content.
PKGBUILD
1
# Maintainer: dim <mlrudasill@gmail.com>
2
3
pkgname='astramarket-git'
4
pkgver=1.0.1.r0.g4938424
5
pkgrel=1
6
pkgdesc='Unified Linux marketplace with Flatpak, Pacman, AUR, and AppImage support (git master)'
7
arch=('x86_64')
8
url='https://github.com/dim-ghub/AstraMarket'
9
license=('GPL-3.0-only')
10
depends=('qt6-base' 'qt6-declarative' 'qt6-shadertools' 'qt6-svg')
11
makedepends=('git' 'cmake' 'ninja' 'pkgconf' 'qt6-shadertools')
12
optdepends=('flatpak: Flatpak package support'
13
'paru: AUR package support'
14
'yay: AUR package support'
15
'pacman: Pacman package support')
16
provides=('astramarket' 'astra')
17
conflicts=('astramarket' 'astramarket-bin')
18
source=("git+$url.git")
19
sha256sums=('SKIP')
20
21
pkgver() {
22
cd "$srcdir/AstraMarket"
23
git describe --long --tags --abbrev=7 2>/dev/null | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g' || printf "1.0.1.r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short=7 HEAD)"
24
}
25
26
build() {
27
cd "$srcdir/AstraMarket"
28
cmake -B build -G Ninja \
29
-DCMAKE_BUILD_TYPE=Release \
30
-DCMAKE_INSTALL_PREFIX=/usr
31
cmake --build build
32
}
33
34
package() {
35
cd "$srcdir/AstraMarket"
36
DESTDIR="$pkgdir" cmake --install build
37
install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
38
}
39
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-18 00:03:42 | LOW | 2 |
| 2026-08-17 01:34:23 | LOW | 2 |