2011-06-23 03:22:59 +02:00
|
|
|
# Template file for 'base-system'
|
|
|
|
pkgname=base-system
|
2014-02-16 09:31:38 +01:00
|
|
|
version=0.82
|
2012-06-18 11:21:55 +02:00
|
|
|
revision=1
|
2013-08-27 11:20:36 +02:00
|
|
|
build_style=meta
|
2013-11-11 09:12:22 +01:00
|
|
|
homepage="http://www.voidlinux.eu/"
|
2013-04-12 08:55:23 +02:00
|
|
|
short_desc="Void Linux base system meta package"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
|
|
license="Public domain"
|
|
|
|
|
2013-09-28 11:46:34 +02:00
|
|
|
makedepends="
|
2013-10-27 10:45:21 +01:00
|
|
|
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
|
2013-11-11 09:12:22 +01:00
|
|
|
shadow e2fsprogs btrfs-progs xfsprogs f2fs-tools dosfstools kbd psmisc procps-ng
|
2014-02-16 09:31:38 +01:00
|
|
|
tzdata pciutils iana-etc systemd dcron?cron-daemon openssh dhcpcd
|
2013-11-11 09:12:22 +01:00
|
|
|
iproute2 iputils bridge-utils ifenslave iw wpa_supplicant xbps netbsd-wtf
|
2014-01-23 13:29:59 +01:00
|
|
|
nvi sudo wifi-firmware void-artwork nss-mdns traceroute ethtool parted"
|
2013-11-11 09:12:22 +01:00
|
|
|
|
2014-01-18 12:58:00 +01:00
|
|
|
case "$XBPS_TARGET_MACHINE" in
|
2014-01-23 13:29:59 +01:00
|
|
|
i686) makedepends+=" linux grub";;
|
|
|
|
x86_64) makedepends+=" linux grub-x86_64-efi";;
|
2014-01-18 12:58:00 +01:00
|
|
|
esac
|
2013-11-11 09:12:22 +01:00
|
|
|
|
2014-01-01 16:10:11 +01: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
|