blob: dcefa5827609f4725a21f1ca2c4d1e6099da244b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Maintainer: Matt Quintanilla <matt @ matt quintanilla . xyz>
pkgname=base-openrc
provides=('base')
conflicts=('base')
pkgver=3
pkgrel=1
pkgdesc='Minimal package set to define a basic Arch Linux installation (open rc version)'
url='https://www.archlinux.org'
arch=('any')
license=('GPL')
depends=(
# very very base
'filesystem' 'gcc-libs' 'glibc' 'bash'
# POSIX tools
'coreutils' 'file' 'findutils' 'gawk' 'grep' 'procps-ng' 'sed' 'tar'
# standard linux toolset
'gettext' 'pciutils' 'psmisc' 'shadow' 'util-linux' 'bzip2' 'gzip' 'xz'
# distro defined requirements
'licenses' 'pacman' 'archlinux-keyring' 'openrc' 'openrc-arch-services-git'
# networking, ping, etc
'iputils' 'iproute2'
)
optdepends=(
'linux: bare metal support'
)
# vim:set sw=2 sts=-1 et:
|