rafatosta / zapzap

WhatsApp desktop application written in Pyqt6 + PyQt6-WebEngine.
GNU General Public License v3.0
55 stars 2 forks source link

feat: add debian packaging folder #151

Closed trois-six closed 1 year ago

trois-six commented 1 year ago

This permits to get a Debian package from the project.

rafatosta commented 1 year ago

Thank you very much.It's a great collaboration !!

rafatosta commented 1 year ago

What command to build the .deb?

trois-six commented 1 year ago

What command to build the .deb?

docker run --rm -ti debian:unstable bash
apt-get install dpkg-dev devscripts git
git clone https://github.com/rafatosta/zapzap
cd zapzap
cp -r _packaging/debian .
yes | mk-build-deps -i
dpkg-buildpackage -b

And you get zapzap_4.4.5_all.deb in the parent directory (I did that in a docker container, but it's not mandatory of course).