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
+19
View File
@@ -0,0 +1,19 @@
#!/bin/sh
set -e
case "$1" in
purge)
rm -rf /etc/ezcoo-usb-control
if id -u ezcoo > /dev/null 2>&1; then
deluser --quiet ezcoo || true
fi
if getent group ezcoo > /dev/null 2>&1; then
delgroup --quiet ezcoo || true
fi
if [ -d /run/systemd/system ]; then
systemctl daemon-reload
fi
;;
esac
#DEBHELPER#