diff --git a/Makefile b/Makefile index 8853ced..167767a 100644 --- a/Makefile +++ b/Makefile @@ -61,12 +61,12 @@ clean: install: all set -ex ; for i in $(SCRIPTS) ; do \ - install -o root -g root -m 755 $$i ${DESTDIR}/usr/$$i ; \ + install -m 755 $$i ${DESTDIR}/usr/$$i ; \ done set -ex ; for i in $(MANPGS) ; do \ - install -o root -g root -m 644 $$i ${DESTDIR}/usr/share/$$i ; \ + install -m 644 $$i ${DESTDIR}/usr/share/$$i ; \ done set -ex ; for i in $(DOCS) $(GENDOCS) ; do \ - install -o root -g root -m 644 $$i \ + install -m 644 $$i \ ${DESTDIR}/usr/share/doc/muxsa/$${i##*/} ; \ done diff --git a/debian/changelog b/debian/changelog index 1680f55..e63dfb5 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +muxsa (1.0.0-3) unstable; urgency=low + + * "Rules-Requires-Root: no" in debian/control so it builds on trixie + + -- Sebastian Kiesel Thu, 21 Aug 2025 17:20:42 +0200 + muxsa (1.0.0-2) unstable; urgency=low * Add further dependencies diff --git a/debian/control b/debian/control index 183c56b..99a0709 100644 --- a/debian/control +++ b/debian/control @@ -5,6 +5,7 @@ Maintainer: Sebastian Kiesel Build-Depends: debhelper-compat (= 13), pandoc, Standards-Version: 4.6.2 +Rules-Requires-Root: no Homepage: https://git-nks-public.tik.uni-stuttgart.de/edu/muxsa Vcs-Browser: https://git-nks-public.tik.uni-stuttgart.de/edu/muxsa Vcs-Git: https://git-nks-public.tik.uni-stuttgart.de/edu/muxsa.git