The Freedesktop Appstream specification recommends .metainfo.xml instead of .appdata.xml

https://www.freedesktop.org/software/appstream/docs/chap-Metadata.html
This commit is contained in:
Alexander Wilms
2023-09-13 12:13:56 +00:00
committed by Adrián Insaurralde Avalos
parent 01256623ff
commit 7abebdad9b
2 changed files with 3 additions and 3 deletions

View File

@@ -16,11 +16,11 @@ if(NOT DEFINED APPDATA_RELEASE_DATE)
endif()
configure_file(
org.freecad.FreeCAD.appdata.xml.in
${CMAKE_BINARY_DIR}/org.freecad.FreeCAD.appdata.xml
org.freecad.FreeCAD.metainfo.xml.in
${CMAKE_BINARY_DIR}/org.freecad.FreeCAD.metainfo.xml
)
install(
FILES ${CMAKE_BINARY_DIR}/org.freecad.FreeCAD.appdata.xml
FILES ${CMAKE_BINARY_DIR}/org.freecad.FreeCAD.metainfo.xml
DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/metainfo
)