chore: add Makefile and Debian packaging

This commit is contained in:
2026-05-24 18:53:11 +03:00
parent 2c49e7e427
commit 4a4aaee884
7 changed files with 183 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
#!/bin/sh
set -e
case "$1" in
remove|upgrade|deconfigure)
if [ -d /run/systemd/system ]; then
systemctl stop ezcoo-usb-control.service || true
systemctl disable ezcoo-usb-control.service || true
fi
;;
esac
#DEBHELPER#