This repository has been archived on 2024-11-03. You can view files and clone it, but cannot push or open issues or pull requests.
2023-10-29 15:34:13 +00:00
|
|
|
#!/bin/sh
|
|
|
|
pkgname=dinit-services
|
|
|
|
version=1.0
|
2024-02-22 16:48:15 +00:00
|
|
|
revision=1
|
2023-10-29 15:34:13 +00:00
|
|
|
short_desc="System services for evolutionOS"
|
|
|
|
maintainer="Tracker-Friendly <jliwin98@danwin1210.de>"
|
|
|
|
homepage="https://github.com/davmac314/dinit"
|
|
|
|
license="GPL-3.0"
|
|
|
|
conflicts="runit-void"
|
|
|
|
build_style=meta
|
|
|
|
|
|
|
|
do_install() {
|
|
|
|
mkdir -p ${DESTDIR}/etc/dinit.d/
|
|
|
|
cp -r ${FILESDIR}/dinit.d/* ${DESTDIR}/etc/dinit.d/
|
|
|
|
vbin ${FILESDIR}/drunner
|
|
|
|
ln -s /usr/bin/dinit ${DESTDIR}/usr/bin/init
|
|
|
|
}
|