zii-bin
LOW
maintainer mirarrapp
0 votes
scanned 2026-09-16 07:21:35.943234
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: mirarrapp <iknowarch@proton.me>
2
pkgname=zii-bin
3
pkgver=0.2.1
4
pkgrel=1
5
pkgdesc="Blazing-fast photo viewer and editor for Omarchy Linux"
6
arch=('x86_64')
7
url="https://github.com/mirarr-app/zii"
8
license=('MIT')
9
depends=('quickshell' 'glibc' 'gcc-libs')
10
provides=('zii')
11
conflicts=('zii')
12
options=(!debug)
13
14
source=("$pkgname-$pkgver.tar.gz::https://github.com/mirarr-app/zii/releases/download/v$pkgver/zii-v$pkgver-x86_64-unknown-linux-gnu.tar.gz")
15
sha256sums=('a7f102c6ca3c30437cda01bb9ae5f5ffa3a40ce3f1ca655cc0f9801984563449')
16
17
package() {
18
local _src="zii-v${pkgver}-x86_64-unknown-linux-gnu"
19
cd "$srcdir/$_src"
20
21
# Binary
22
install -Dm755 zii "$pkgdir/usr/bin/zii"
23
24
# UI files
25
install -dm755 "$pkgdir/usr/share/zii/ui"
26
cp -r ui/* "$pkgdir/usr/share/zii/ui/"
27
find "$pkgdir/usr/share/zii/ui" -type d -exec chmod 755 {} +
28
find "$pkgdir/usr/share/zii/ui" -type f -exec chmod 644 {} +
29
30
# Desktop entry
31
install -Dm644 zii.desktop "$pkgdir/usr/share/applications/zii.desktop"
32
33
# Icons
34
install -Dm644 assets/zii.svg "$pkgdir/usr/share/icons/hicolor/scalable/apps/zii.svg"
35
install -Dm644 assets/zii.svg "$pkgdir/usr/share/pixmaps/zii.svg"
36
install -Dm644 assets/zii.png "$pkgdir/usr/share/icons/hicolor/512x512/apps/zii.png"
37
install -Dm644 assets/zii.png "$pkgdir/usr/share/pixmaps/zii.png"
38
for sz in 32 48 64 128 256; do
39
if [ -f "assets/zii-${sz}.png" ]; then
40
install -Dm644 "assets/zii-${sz}.png" "$pkgdir/usr/share/icons/hicolor/${sz}x${sz}/apps/zii.png"
41
fi
42
done
43
44
# License & Documentation
45
if [ -f LICENSE ]; then
46
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
47
fi
48
if [ -f README.md ]; then
49
install -Dm644 README.md "$pkgdir/usr/share/doc/$pkgname/README.md"
50
fi
51
}
52
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-16 07:21:35 | Low | 1 |