pkgs/base/PKGBUILD

31 lines
732 B
Bash
Raw Normal View History

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