summary refs log tree commit diff stats
path: root/data/misc/meson.build
AgeCommit message (Collapse)Author
2018-07-26build: Add with-appdata optionPatrick Griffis
This is mostly useful to avoid a newer gettext dependency for translating the appdata file but it is also just useless data for some distros without any app store. Closes #2219
2018-03-23build: Add option to specify path to perl binaryRainer Müller
2018-03-17build: Correctly set plugin licensesPatrick Griffis
2018-03-17build: Add metainfo files for addonsPatrick Griffis
2018-03-10Bump to 2.14.0Patrick Griffis
2018-01-24Change the installation path of the appdata file to {datadir}/metainfoMattia Rizzolo
The path where appdata/appstream files should be installed has been changed from /usr/share/appdata/ to /usr/share/metainfo/. https://www.freedesktop.org/software/appstream/docs/chap-Metadata.html#spec-component-location Signed-off-by: Mattia Rizzolo <mattia@mapreri.org>
2017-12-24Rename app-id to io.github.HexchatPatrick Griffis
RDNS syntax is recommended for applications and this matches the existing flatpak. Note that the dbus service and icons still need renaming though the former is an API breakage. Closes #2104 Closes #2103
2017-06-15build: Validate desktop/appstream filesPatrick Griffis
2017-06-13build: Replace Autotools with MesonPatrick Griffis
Quick rundown of benefits: - Much faster: - Autotools (with autogen): 22 seconds - Meson: 7 seconds - Meson (with ccache): 2 seconds - Simpler: - ~1000 lines smaller - Single simple language - Potentially better Windows (Visual Studio) support What is not done: - Complete Windows support - OSX support (easy) Closes #2013 Closes #1937 Closes #1803