30 lines
718 B
Bash
30 lines
718 B
Bash
# Maintainer: Daryl Ronningen <relms@relms.dev>
|
|
|
|
pkgname=base
|
|
pkgver=1
|
|
pkgrel=1
|
|
pkgdesc="Minimal package set to define a basic Ikeda Linux installation"
|
|
arch=("any")
|
|
url="https://www.ikedalinux.org"
|
|
depends=(
|
|
# very very base
|
|
"filesystem"
|
|
|
|
# libc & runtimes
|
|
"musl" "argp-standalone" "musl-fts" "musl-obstack" "llvm-runtimes"
|
|
|
|
# POSIX tools
|
|
"busybox" "file" "findutils" "gawk" "grep" "procps-ng" "libarchive" "bash"
|
|
|
|
# standard linux toolset
|
|
#"gettext" "pciutils" "psmisc" "shadow" "util-linux"
|
|
|
|
# distro defined requirements
|
|
#"licenses" "pacman"
|
|
|
|
# libraries for tools
|
|
"ncurses" "readline" "xz" "zstd" "zlib-ng" "mpfr" "gmp" "pcre2" "bzip2" "libressl" "expat"
|
|
)
|
|
optdepends=(
|
|
"linux: bare metal support"
|
|
)
|