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/chrony-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/chrony-openrc')
-rw-r--r-- | nonsystemd/chrony-openrc/PKGBUILD | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/nonsystemd/chrony-openrc/PKGBUILD b/nonsystemd/chrony-openrc/PKGBUILD index 546e25c08..d7db1d41e 100644 --- a/nonsystemd/chrony-openrc/PKGBUILD +++ b/nonsystemd/chrony-openrc/PKGBUILD @@ -1,15 +1,15 @@ -# Maintainer: Nathan Owens <ndowens@artixlinux.org> +# Maintainer: David P. <megver83@parabola.nu> +# Maintainer (Artix): Nathan Owens <ndowens@artixlinux.org> pkgname=chrony-openrc pkgver=20210506 pkgrel=2 pkgdesc="OpenRC chrony init" arch=('any') -url="https://gitea.artixlinux.org/artixlinux/packages-openrc" +url="https://gitea.artixlinux.org/packagesC/chrony-openrc" license=('GPL2') groups=('openrc-galaxy') provides=('init-chrony' 'init-timed') -depends=('openrc' 'chrony') conflicts=('init-chrony' 'init-timed') backup=('etc/conf.d/chrony') source=("chrony.confd" @@ -21,6 +21,7 @@ b2sums=('496483539b15a55c15287178b7df730fe33fe8d7ceda164f362c0dd6cd833bbee84a0a0 package() { + depends=('openrc' 'chrony') install -Dm755 "${srcdir}"/chrony.initd "${pkgdir}"/etc/init.d/chrony install -Dm644 "${srcdir}"/chrony.confd "${pkgdir}"/etc/conf.d/chrony } |