mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-21 07:55:00 +00:00
Rely on dh_installsystemd instead of systemd-sequence. Signed-off-by: James Valleroy <jvalleroy@mailbox.org> Reviewed-by: Joseph Nuthalapati <njoseph@thoughtworks.com>
13 lines
290 B
Makefile
Executable File
13 lines
290 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
export DH_VERBOSE=1
|
|
export PYBUILD_NAME=plinth
|
|
|
|
%:
|
|
dh $@ --with python3 --buildsystem=pybuild
|
|
|
|
override_dh_auto_install-indep:
|
|
dh_auto_install
|
|
./run --list-dependencies 2> /dev/null | sort | tr '\n' ', ' | \
|
|
sed -e 's/^/plinth:Depends=/' >> debian/plinth.substvars
|