mirror of
https://github.com/void-linux/void-packages.git
synced 2025-06-07 15:43:49 +02:00
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"
|
only_for_archs="i686 x86_64"
|
||||||
|
|
||||||
makedepends="
|
makedepends="
|
||||||
base-files>=0.77 ncurses coreutils findutils diffutils dash bash grep
|
base-files>=0.77 ncurses coreutils findutils gcc glibc diffutils dash bash
|
||||||
texinfo file sed gawk less util-linux which tar man-pages man-db shadow
|
grep gzip texinfo file sed gawk less util-linux which tar man-pages man-db
|
||||||
e2fsprogs btrfs-progs xfsprogs kbd psmisc procps-ng sudo tzdata pciutils
|
shadow e2fsprogs btrfs-progs xfsprogs kbd psmisc procps-ng sudo tzdata pciutils
|
||||||
iana-etc systemd dcron?cron-daemon openssh>=6.1p1 dhcpcd iproute2 iputils
|
iana-etc systemd dcron?cron-daemon openssh>=6.1p1 dhcpcd iproute2 iputils
|
||||||
bridge-utils ifenslave iw wpa_supplicant xbps netbsd-wtf nvi dosfstools
|
bridge-utils ifenslave iw wpa_supplicant xbps netbsd-wtf nvi dosfstools
|
||||||
wifi-firmware linux void-artwork nss-mdns traceroute ethtool parted"
|
wifi-firmware linux void-artwork nss-mdns traceroute ethtool parted"
|
||||||
|
|
||||||
base-system_package() {
|
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…
Add table
Reference in a new issue