20 lines
534 B
Bash
20 lines
534 B
Bash
# Template file for 'base-minimal'
|
|
pkgname=base-minimal
|
|
version=0.3
|
|
revision=1
|
|
build_style=meta
|
|
short_desc="Void Linux base system meta with minimal tools"
|
|
maintainer="Enno Boland <gottox@voidlinux.org>"
|
|
license="Public Domain"
|
|
homepage="https://www.voidlinux.org/"
|
|
|
|
depends="
|
|
base-files coreutils findutils diffutils dash grep gzip sed gawk
|
|
util-linux which tar shadow procps-ng iana-etc xbps nvi tzdata
|
|
runit-void removed-packages"
|
|
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
*-musl) depends+=" musl";;
|
|
*) depends+=" glibc-locales";;
|
|
esac
|