12 lines
396 B
Makefile
12 lines
396 B
Makefile
.PHONY: install-deps build clean
|
|
|
|
install-deps:
|
|
echo "Проверка и установка зависимостей для сборки deb-пакета..."
|
|
sudo apt update && sudo apt install -y debhelper dh-python pybuild-plugin-pyproject python3-build python3-all python3-setuptools build-essential devscripts
|
|
|
|
build: install-deps
|
|
dpkg-buildpackage -us -uc -b
|
|
|
|
clean:
|
|
debian/rules clean
|