2014-07-28 15:17:46 +00:00
|
|
|
# Template file for 'base-system-systemd'
|
|
|
|
pkgname=base-system-systemd
|
2014-06-29 11:33:41 +00:00
|
|
|
version=0.89
|
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"
|
|
|
|
|
2014-07-28 15:17:46 +00:00
|
|
|
provides="base-system-${version}"
|
|
|
|
replaces="base-system>=0"
|
|
|
|
|
2013-09-28 09:46:34 +00:00
|
|
|
makedepends="
|
2014-06-20 08:56:04 +00:00
|
|
|
base-files>=0.77 ncurses coreutils findutils gcc glibc glibc-locales diffutils
|
2014-06-29 11:33:41 +00:00
|
|
|
dash bash grep gzip file sed gawk less util-linux which tar man-pages
|
2014-06-20 08:56:04 +00: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 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
|