I want to build packages for my PPA using meson. I think I figured out how to do make a working recipe. However I need meson version (>= 0.4) which is not in the release repository of xenial.
However, in the backports repository (https://launchpad.net/ubuntu/+source/meson) there is a meson with a version that is sufficient. How can I tell launchpad to build using the backports version? Is there some flag in the debian/control
file I can use to tell launchpad to use the backported version?
For reference: my debian/control
file:
Source: hardcode-traySection: miscPriority: optionalMaintainer: ****Build-Depends: build-essential, debhelper (>= 9), meson (>=0.40)Standards-Version: 3.9.3Homepage: ****Package: hardcode-trayArchitecture: allDepends: git, python3, python3-gi, wget, inkscape, python3-cairosvg, gir1.2-rsvg-2.0, libqt4-svg, sni-qt, gir1.2-gtk-3.0, ${misc:Depends}Description: Fixes Hardcoded tray icons in Linux
the meson Build-Depends
is giving me the issues...