okuri-bin
LOW
maintainer monorkin
0 votes
scanned 2026-09-01 11:47:58.443869
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: Stanko K.R. <stanko@stanko.io>
2
# Template for the AUR -bin package. `make release-aur` fills in the
3
# @PLACEHOLDER@ values and pushes the result to the AUR.
4
pkgname=okuri-bin
5
_binname=okuri
6
pkgver=0.1.0
7
pkgrel=1
8
pkgdesc="Dead-simple file transfer for Omarchy & Linux (prebuilt binary)"
9
arch=('x86_64')
10
url="https://github.com/monorkin/okuri"
11
license=('MIT')
12
# A lower bound only. Qt keeps binary compatibility across Qt 6 minor releases, so the linking
13
# side is safe; what this binary is really tied to is the compiled-QML data structure version,
14
# which Qt bumps when that layout changes rather than on every release. An upper bound would
15
# trade that occasional break for a certain one — the package refusing to install after every
16
# Qt bump, broken or not. If a bump ever does break it, republish with a new pkgrel.
17
depends=('glibc' 'gcc-libs'
18
"qt6-base>=6.11"
19
"qt6-declarative>=6.11")
20
provides=('okuri')
21
conflicts=('okuri')
22
options=('!debug')
23
# The icons are fetched from the tag rather than committed here. They are already at the sizes
24
# hicolor wants, so nothing has to be resized and nothing has to be installed to do it.
25
source=('LICENSE'
26
'okuri.desktop'
27
"$_binname-48-$pkgver.png::$url/raw/v$pkgver/assets/icons/$_binname-48.png"
28
"$_binname-64-$pkgver.png::$url/raw/v$pkgver/assets/icons/$_binname-64.png"
29
"$_binname-128-$pkgver.png::$url/raw/v$pkgver/assets/icons/$_binname-128.png"
30
"$_binname-256-$pkgver.png::$url/raw/v$pkgver/assets/icons/$_binname-256.png")
31
source_x86_64=("$_binname-$pkgver::$url/releases/download/v$pkgver/$_binname-linux-amd64")
32
sha256sums=('1b1357d052d290abaf31c1ee06be0d37001838123f7c1f1a506dec646c10069c'
33
'd165ba2efe557e29940a7a8f3bc0b25f864f6b755d5f861507bab6a519c2b4fe'
34
'e25aad22966f439888695364a55b62009cff3b10257caa4344510c38e32b7ee7'
35
'5abbc057afa7075e8bc9bdfa4837fe0e291b1814e762aafdd7aa5f1a0389c4c7'
36
'd540ec7fa7c45910c9677d8334b8769e9d69cf8178efd1028e4ef8b118081209'
37
'a8261ebd8a20c8fffb2abbb3d1204ff3e3be29d8f1b52421daf4cedff633af9a')
38
sha256sums_x86_64=('265ffa1f1bc9a5ae20dd1a9b96b05cf6ab0001857b4a604c1f3991052c2641ad')
39
40
package() {
41
install -Dm755 "$_binname-$pkgver" "$pkgdir/usr/bin/$_binname"
42
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
43
install -Dm644 okuri.desktop "$pkgdir/usr/share/applications/$_binname.desktop"
44
45
for size in 48 64 128 256; do
46
install -Dm644 "$_binname-$size-$pkgver.png" \
47
"$pkgdir/usr/share/icons/hicolor/${size}x${size}/apps/$_binname.png"
48
done
49
}
50
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-01 11:47:58 | Low | 1 |