crau-nbd
LOW
maintainer shadichy
0 votes
scanned 2026-09-04 05:56:41.774165
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
#shellcheck shell=bash
2
# AUR Maintainer: Shadichy <shadichy@blisslabs.org>
3
4
pkgname=crau-nbd
5
pkgver=0.1.0
6
pkgrel=1
7
pkgdesc="Linux Network Block Device (NBD) daemon for ChromeOS/Android CrAU payload.bin"
8
arch=('x86_64' 'aarch64')
9
url="https://github.com/shadichy/crau-nbd"
10
license=('GPL-3.0-or-later')
11
12
depends=(
13
'bzip2'
14
'glibc'
15
'polkit'
16
'protobuf'
17
'xz'
18
)
19
20
optdepends=(
21
'mount-zip: for mounting deflated ZIP archives on-the-fly'
22
'zenity: GUI partition selector dialog'
23
'libnotify: desktop notifications'
24
)
25
26
makedepends=(
27
'cmake'
28
'ninja'
29
'pkgconf'
30
)
31
32
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/shadichy/crau-nbd/archive/refs/tags/v${pkgver}.tar.gz")
33
sha256sums=('50515f15bae45ba5542ec4ac0c4c34f9d5e55d594e456613895ccd61aa588e2f')
34
35
build() {
36
cmake -B build -S "${pkgname}-${pkgver}" \
37
-DCMAKE_BUILD_TYPE=Release \
38
-DCMAKE_INSTALL_PREFIX=/usr \
39
-G Ninja
40
cmake --build build -j$(nproc)
41
}
42
43
package() {
44
DESTDIR="${pkgdir}" cmake --install build
45
46
# License
47
install -Dm644 "${srcdir}/${pkgname}-${pkgver}/COPYING" \
48
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
49
}
50
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-04 05:56:41 | Low | 1 |