nuttx-git
LOW
maintainer arkades
0 votes
scanned 2026-08-23 01:19:32.924999
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: Dom <...>
2
3
pkgname=nuttx-git
4
pkgver=r62882.g4ebc8a7291d
5
pkgrel=1
6
pkgdesc='Apache NuttX RTOS development source tree with integrated applications (Git)'
7
arch=('any')
8
url='https://nuttx.apache.org/'
9
license=('Apache-2.0')
10
11
depends=(
12
'bison'
13
'flex'
14
'gettext'
15
'texinfo'
16
'ncurses'
17
'gperf'
18
'automake'
19
'libtool'
20
'pkgconf'
21
'gmp'
22
'libmpc'
23
'mpfr'
24
'libisl'
25
'elfutils'
26
'expat'
27
'picocom'
28
'uboot-tools'
29
'util-linux'
30
'vim'
31
'genromfs'
32
'kconfig-frontends-git'
33
)
34
35
optdepends=(
36
'aarch64-linux-gnu-gcc: AArch64 Linux cross compiler'
37
'arm-none-eabi-gcc: ARM bare-metal cross compiler'
38
'lm32-elf-gcc: LatticeMico32 cross compiler'
39
'nds32le-elf-gcc: Andes NDS32 little-endian cross compiler'
40
'or1k-elf-gcc: OpenRISC cross compiler'
41
'riscv64-elf-gcc: RISC-V 64-bit bare-metal cross compiler'
42
'riscv64-linux-gnu-gcc: RISC-V 64-bit Linux cross compiler'
43
)
44
45
source=(
46
'nuttx::git+https://github.com/apache/nuttx.git'
47
'apps::git+https://github.com/apache/nuttx-apps.git'
48
)
49
50
b2sums=('SKIP'
51
'SKIP')
52
53
pkgver() {
54
cd nuttx
55
printf 'r%s.g%s\n' \
56
"$(git rev-list --count HEAD)" \
57
"$(git rev-parse --short HEAD)"
58
}
59
60
package() {
61
local _dest="$pkgdir/usr/share/nuttx"
62
63
install -dm755 "$_dest"
64
install -dm755 "$_dest/apps"
65
66
rm -r nuttx/.github
67
68
git -C nuttx archive HEAD | bsdtar -x -f - --exclude '.git*' -C "$_dest"
69
git -C apps archive HEAD | bsdtar -x -f - --exclude ".git*" -C "$_dest/apps"
70
}
71
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-23 01:19:32 | Low | 1 |