base-system: add all required build dependencies.
This commit is contained in:
parent
e9c229c923
commit
f850a257f4
1 changed files with 9 additions and 4 deletions
|
@ -12,13 +12,18 @@ license="Public domain"
|
|||
only_for_archs="i686 x86_64"
|
||||
|
||||
makedepends="
|
||||
base-files>=0.77 ncurses coreutils findutils diffutils dash bash grep
|
||||
texinfo file sed gawk less util-linux which tar man-pages man-db shadow
|
||||
e2fsprogs btrfs-progs xfsprogs kbd psmisc procps-ng sudo tzdata pciutils
|
||||
base-files>=0.77 ncurses coreutils findutils gcc glibc diffutils dash bash
|
||||
grep gzip texinfo file sed gawk less util-linux which tar man-pages man-db
|
||||
shadow e2fsprogs btrfs-progs xfsprogs kbd psmisc procps-ng sudo tzdata pciutils
|
||||
iana-etc systemd dcron?cron-daemon openssh>=6.1p1 dhcpcd iproute2 iputils
|
||||
bridge-utils ifenslave iw wpa_supplicant xbps netbsd-wtf nvi dosfstools
|
||||
wifi-firmware linux void-artwork nss-mdns traceroute ethtool parted"
|
||||
|
||||
base-system_package() {
|
||||
depends="${makedepends}"
|
||||
# gcc and glibc shouldn't be direct dependencies.
|
||||
for f in ${makedepends}; do
|
||||
if [ "$f" != "gcc" -a "$f" != "glibc" ]; then
|
||||
depends+=" $f"
|
||||
fi
|
||||
done
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue