35 líneas
910 B
Makefile
Archivo Ejecutable
35 líneas
910 B
Makefile
Archivo Ejecutable
#!/usr/bin/make -f
|
|
|
|
export DH_VERBOSE = 1
|
|
export PYBUILD_NAME = debai
|
|
export PYBUILD_SYSTEM = pyproject
|
|
export PYBUILD_DESTDIR = debian/debai
|
|
|
|
%:
|
|
dh $@ --with python3 --buildsystem=pybuild
|
|
|
|
override_dh_auto_build:
|
|
dh_auto_build
|
|
|
|
override_dh_auto_install:
|
|
dh_auto_install
|
|
# Install systemd service
|
|
install -D -m 644 data/systemd/debai.service \
|
|
debian/debai/lib/systemd/system/debai.service
|
|
# Install desktop file
|
|
install -D -m 644 data/applications/debai.desktop \
|
|
debian/debai/usr/share/applications/debai.desktop
|
|
# Install icons
|
|
install -D -m 644 data/icons/hicolor/scalable/apps/debai.svg \
|
|
debian/debai/usr/share/icons/hicolor/scalable/apps/debai.svg
|
|
# Install default configuration
|
|
install -D -m 644 data/config/debai.yaml \
|
|
debian/debai/etc/debai/config.yaml
|
|
|
|
override_dh_installsystemd:
|
|
dh_installsystemd --name=debai
|
|
|
|
override_dh_auto_test:
|
|
# Skip tests during package build
|
|
true
|