We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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
Source
Package
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Deb package control contains
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)
Note: Build-Depends section goes to
Source
and Dpends section is withinPackage
section of debian/controlThe text was updated successfully, but these errors were encountered: