30 lines
704 B
Bash
30 lines
704 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'
|
|
url='https://www.ikedalinux.org'
|
|
arch=('any')
|
|
depends=(
|
|
# very very base
|
|
'filesystem'
|
|
|
|
# libc
|
|
'musl' 'argp-standalone' 'musl-fts' 'musl-obstack'
|
|
|
|
# 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'
|
|
)
|