2011-06-23 01:22:59 +00:00
|
|
|
# Template file for 'base-system'
|
|
|
|
pkgname=base-system
|
2014-03-03 08:23:19 +00:00
|
|
|
version=0.84
|
2012-06-18 09:21:55 +00:00
|
|
|
revision=1
|
2013-08-27 09:20:36 +00:00
|
|
|
build_style=meta
|
2013-11-11 08:12:22 +00:00
|
|
|
homepage="http://www.voidlinux.eu/"
|
2013-04-12 06:55:23 +00:00
|
|
|
short_desc="Void Linux base system meta package"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
|
|
license="Public domain"
|
|
|
|
|
2013-09-28 09:46:34 +00:00
|
|
|
makedepends="
|
2014-03-03 08:23:19 +00:00
|
|
|
base-files>=0.77 ncurses coreutils findutils gcc glibc glibc-locales diffutils dash bash
|
2013-10-27 09:45:21 +00:00
|
|
|
grep gzip texinfo file sed gawk less util-linux which tar man-pages man-db
|
2013-11-11 08:12:22 +00:00
|
|
|
shadow e2fsprogs btrfs-progs xfsprogs f2fs-tools dosfstools kbd psmisc procps-ng
|
2014-02-16 08:31:38 +00:00
|
|
|
tzdata pciutils iana-etc systemd dcron?cron-daemon openssh dhcpcd
|
2013-11-11 08:12:22 +00:00
|
|
|
iproute2 iputils bridge-utils ifenslave iw wpa_supplicant xbps netbsd-wtf
|
2014-01-23 12:29:59 +00:00
|
|
|
nvi sudo wifi-firmware void-artwork nss-mdns traceroute ethtool parted"
|
2013-11-11 08:12:22 +00:00
|
|
|
|
2014-01-18 11:58:00 +00:00
|
|
|
case "$XBPS_TARGET_MACHINE" in
|
2014-01-23 12:29:59 +00:00
|
|
|
i686) makedepends+=" linux grub";;
|
|
|
|
x86_64) makedepends+=" linux grub-x86_64-efi";;
|
2014-01-18 11:58:00 +00:00
|
|
|
esac
|
2013-11-11 08:12:22 +00:00
|
|
|
|
2014-01-01 15:10:11 +00:00
|
|
|
# gcc and glibc shouldn't be direct dependencies.
|
|
|
|
for f in ${makedepends}; do
|
|
|
|
if [ "$f" != "gcc" -a "$f" != "glibc" ]; then
|
|
|
|
depends+=" $f"
|
|
|
|
fi
|
|
|
|
done
|