FDS/OS 1.0

This commit is contained in:
2026-09-21 22:29:23 +08:00
commit 99bc3d15c5
430 changed files with 34876 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
# Static payloads are built and checked on the host before packaging.
pkgname=fds-cli
version=0.1.0
revision=1
archs="aarch64"
nostrip=yes
noverifyrdeps=yes
depends="coreutils e2fsprogs erofs-utils"
short_desc="FDS static system and cartridge command interface"
maintainer="FDS/OS maintainers"
license="MIT"
homepage="https://github.com/void-linux/void-packages"
do_install() {
local input="${XBPS_SRCDISTDIR}/${pkgname}-${version}"
(cd "$input" && sha256sum -c SHA256SUMS) || return 1
vbin "${input}/fds"
vbin "${input}/fds-boottrace"
vbin "${input}/fds-burn"
vbin "${input}/fds-inspect"
vbin "${input}/fds-eject"
vbin "${input}/fds-power"
vbin "${input}/fds-release"
vlicense "${input}/LICENSE"
vlicense "${input}/RUST-NOTICES.txt"
}