Deb package control contains ``` Depends: rsync, rsync, libglib2.0-dev, libgtk-3-dev, libnotify-dev , libgtk-3-dev, libnotify-dev ``` which is not right as it installs hundreds of build dependencies which not required to run the binary. It is only required to compile. So it should be (on debian and ubuntu) ``` Build-Depends: rsync, libglib2.0-dev, libgtk-3-dev, libnotify-dev Depends: rsync, libglib2.0-bin, libgtk-3-bin, libnotify-bin ``` Note: Build-Depends section goes to `Source` and Dpends section is within `Package` section of debian/control