New comment by Luciogi on void-packages repository https://github.com/void-linux/void-packages/pull/49012#issuecomment-1985043275 Comment: ### Fix conflict between signond and signond-qt6 ```diff diff --git a/srcpkgs/signond/template b/srcpkgs/signond/template index feccf39466a..7fab150e41c 100644 --- a/srcpkgs/signond/template +++ b/srcpkgs/signond/template @@ -1,7 +1,7 @@ # Template file for 'signond' pkgname=signond version=8.61 -revision=1 +revision=2 build_style=qmake configure_args="LIBDIR=/usr/lib" conf_files="/etc/signond.conf" @@ -23,6 +23,11 @@ pre_configure() { fi } +post_install() { + # Fix conflict with signond-qt6 + rm ${DESTDIR}/usr/bin/signond +} + signond-doc_package() { short_desc+=" - documentation" pkg_install() { ```