Fixed evolution-patches

This commit is contained in:
Tracker-Friendly 2023-09-12 23:32:34 +01:00
parent 6dc5ec85dd
commit c2f20be12e
1 changed files with 5 additions and 9 deletions

View File

@ -1,6 +1,6 @@
pkgname=evolution-patches pkgname=evolution-patches
version=1.1 version=1.1
revision=3 revision=5
build_style=meta build_style=meta
maintainer="Tracker-Friendly <jliwin98@danwin1210.de>" maintainer="Tracker-Friendly <jliwin98@danwin1210.de>"
short_desc="Simple patches that enable an usable OS out of the box" short_desc="Simple patches that enable an usable OS out of the box"
@ -10,7 +10,7 @@ makedepends="busybox-evolution opendoas"
depends="busybox-evolution opendoas zzz" depends="busybox-evolution opendoas zzz"
replaces="util-linux runit runit-void grep which gzip tar diffutils coreutils findutils xz wget sed gawk pciutils usbutils tree shadowfix" replaces="util-linux runit runit-void grep which gzip tar diffutils coreutils findutils xz wget sed gawk pciutils usbutils tree shadowfix"
provides="awk-0_1" provides="awk-0_1"
conf_files="/etc/shadow /etc/doas.conf /etc/sv/agetty-tty1/conf" conf_files="/etc/doas.conf /etc/shadow"
do_install() { do_install() {
#!/bin/bash #!/bin/bash
@ -43,11 +43,7 @@ do_install() {
mkdir -p ${DESTDIR}/etc/dinit.d/boot.d mkdir -p ${DESTDIR}/etc/dinit.d/boot.d
ln -sf /etc/dinit.d/agetty-tty1 ${DESTDIR}/etc/dinit.d/boot.d/ for i in $(echo "agetty-tty1 agetty-tty2 agetty-tty3 agetty-tty4 agetty-tty5 agetty-tty6 agetty-tty7 dbus dbus-log dhcpcd dhcpcd-log ead ead-log iwd iwd-log loginready ntpd runitb.d splash sshd sshd-log udevd"); do
ln -sf /etc/dinit.d/agetty-tty2 ${DESTDIR}/etc/dinit.d/boot.d/ ln -sf "/etc/dintit.d/$i" "${DESTDIR}/etc/dinit.d/boot.d/$i"
ln -sf /etc/dinit.d/agetty-tty3 ${DESTDIR}/etc/dinit.d/boot.d/ done
ln -sf /etc/dinit.d/agetty-tty4 ${DESTDIR}/etc/dinit.d/boot.d/
ln -sf /etc/dinit.d/agetty-tty5 ${DESTDIR}/etc/dinit.d/boot.d/
ln -sf /etc/dinit.d/agetty-tty6 ${DESTDIR}/etc/dinit.d/boot.d/
ln -sf /etc/dinit.d/agetty-tty7 ${DESTDIR}/etc/dinit.d/boot.d/
} }