2011-06-23 03:22:59 +02:00
|
|
|
# Template file for 'base-system'
|
|
|
|
pkgname=base-system
|
2014-06-29 13:33:41 +02:00
|
|
|
version=0.89
|
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="
|
2014-06-20 10:56:04 +02:00
|
|
|
base-files>=0.77 ncurses coreutils findutils gcc glibc glibc-locales diffutils
|
2014-06-29 13:33:41 +02:00
|
|
|
dash bash grep gzip file sed gawk less util-linux which tar man-pages
|
2014-06-20 10:56:04 +02:00
|
|
|
man-db shadow e2fsprogs btrfs-progs xfsprogs f2fs-tools dosfstools kbd psmisc
|
|
|
|
procps-ng tzdata pciutils iana-etc systemd openssh dhcpcd iproute2 iputils
|
|
|
|
iw wpa_supplicant xbps nvi sudo wifi-firmware void-artwork traceroute ethtool
|
|
|
|
parted kmod"
|
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
|