linuwux-runtime
LOW
maintainer dnmodder
0 votes
scanned 2026-09-27 01:16:09.423259
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: Darvin Delgado <dnmodder at gmail dot com>
2
3
pkgname=linuwux-runtime
4
pkgver=26.09.16
5
pkgrel=1
6
pkgdesc="Lightweight Rust compatibility runtime for Windows games running through Wine and Proton"
7
arch=('x86_64')
8
url="https://github.com/brcly/linuwux-runtime"
9
license=('AGPL-3.0-or-later')
10
depends=('glibc' 'sh')
11
makedepends=('cargo' 'gcc' 'binutils')
12
optdepends=(
13
'wine: running Windows games with Wine'
14
'gamescope: micro-compositor session support'
15
'cpuid-fault-emulation-dkms: CPUID fault emulation on AMD Zen 1-3 processors'
16
'zenity: graphical error notification dialogs'
17
)
18
provides=("linuwux-runtime=$pkgver")
19
conflicts=('linuwux-runtime-git')
20
source=(
21
"$pkgname-$pkgver.tar.gz::$url/archive/refs/tags/v$pkgver.tar.gz"
22
"linuwux"
23
)
24
sha256sums=(
25
'3923286fd05090c810ea6d274c744c5ac5a71946fc11c2910e07845fc2002df7'
26
'6bdba2db509b50fa98db60440087cdcf87a28d7c33cb68b1d1a2eb675c3c93da'
27
)
28
29
prepare() {
30
cd "$pkgname-$pkgver"
31
# Avoid rustup attempting to download IDE/doc components
32
rm -f rust-toolchain.toml
33
export RUSTUP_TOOLCHAIN=stable
34
cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')"
35
}
36
37
build() {
38
cd "$pkgname-$pkgver"
39
export RUSTUP_TOOLCHAIN=stable
40
export CARGO_TARGET_DIR=target
41
export CARGO_NET_OFFLINE=true
42
cargo xtask build --output target/runtime/LinUwUx.so
43
}
44
45
check() {
46
cd "$pkgname-$pkgver"
47
export RUSTUP_TOOLCHAIN=stable
48
export CARGO_NET_OFFLINE=true
49
cargo test --frozen --workspace
50
}
51
52
package() {
53
cd "$pkgname-$pkgver"
54
install -Dm755 target/runtime/LinUwUx.so "$pkgdir/usr/lib/linuwux/LinUwUx.so"
55
install -Dm755 "$srcdir/linuwux" "$pkgdir/usr/bin/linuwux"
56
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
57
install -Dm644 README.md "$pkgdir/usr/share/doc/$pkgname/README.md"
58
}
59
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-27 01:16:09 | Low | 1 |