diff options
author | David P <megver83@parabola.nu> | 2022-07-19 17:04:37 -0400 |
---|---|---|
committer | David P <megver83@parabola.nu> | 2022-07-19 17:04:37 -0400 |
commit | bd0569a337ef9117341d1d1cc2b004df38072c16 (patch) | |
tree | 7de1486a0a612069263c5e93e1492fc6a0999589 /nonsystemd/xdm-openrc | |
parent | edf915dec7af1df0f0ee58eb9da42ccff3a6444d (diff) | |
download | abslibre-bd0569a337ef9117341d1d1cc2b004df38072c16.tar.gz abslibre-bd0569a337ef9117341d1d1cc2b004df38072c16.tar.bz2 abslibre-bd0569a337ef9117341d1d1cc2b004df38072c16.zip |
Update openrc init scripts urls and add their depends as runtime dependencies
By putting their dependencies inside their respective package() function, those deps are not installed at build, hence allowing me to build them indenpendently of openrc
Signed-off-by: David P <megver83@parabola.nu>
Diffstat (limited to 'nonsystemd/xdm-openrc')
-rw-r--r-- | nonsystemd/xdm-openrc/PKGBUILD | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/nonsystemd/xdm-openrc/PKGBUILD b/nonsystemd/xdm-openrc/PKGBUILD index 41d0054e0..fbd950d4c 100644 --- a/nonsystemd/xdm-openrc/PKGBUILD +++ b/nonsystemd/xdm-openrc/PKGBUILD @@ -1,19 +1,20 @@ -# Maintainer: artoo <artoo@artixlinux.org> +# Maintainer: David P. <megver83@parabola.nu> +# Maintainer (Artix): artoo <artoo@artixlinux.org> pkgname=xdm-openrc pkgver=20220104 pkgrel=1 pkgdesc="OpenRC xdm init script" arch=('any') -url="https://gitea.artixlinux.org/artixlinux/packages-openrc" +url="https://gitea.artixlinux.org/packagesX/xdm-openrc" license=('GPL2') groups=('openrc-world') provides=('init-xdm') -depends=('xorg-xdm' 'openrc') conflicts=('init-xdm') source=("xdm.initd") sha256sums=('d0ec3cf9ca3a010e3ef6e36b66c98bbb1102d9f203a595b642c554952f71d467') package() { + depends=('xorg-xdm' 'openrc') install -Dm755 "$srcdir/xdm.initd" "$pkgdir/etc/init.d/xdm" } |