28 lines
703 B
Bash
28 lines
703 B
Bash
# Template file for 'base-chroot'
|
|
pkgname=base-chroot
|
|
version=0.67
|
|
revision=3
|
|
bootstrap=yes
|
|
build_style=meta
|
|
short_desc="Minimal set of packages required for chroot with xbps-src"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
license="Public Domain"
|
|
homepage="http://www.voidlinux.org"
|
|
repository=bootstrap
|
|
|
|
case "$XBPS_TARGET_LIBC" in
|
|
musl) depends="musl-devel";;
|
|
*) depends="glibc-devel glibc-locales";;
|
|
esac
|
|
|
|
depends+="
|
|
base-files binutils gcc gcc-ada libada-devel
|
|
patch sed findutils diffutils make gzip coreutils
|
|
file bsdtar xbps mpfr ncurses libreadline8
|
|
chroot-bash chroot-grep chroot-gawk chroot-distcc
|
|
chroot-util-linux chroot-git tzdata"
|
|
|
|
if [ "$CHROOT_READY" ]; then
|
|
depends+=" ccache"
|
|
fi
|