##// END OF EJS Templates
added appstream data...
jeandet -
r1402:ca5a77f2efbb
parent child
Show More
@@ -0,0 +1,21
1 <?xml version="1.0" encoding="UTF-8"?>
2 <component type="desktop-application">
3 <id>SciQLOP</id>
4 <metadata_license>CC-BY-SA-4.0</metadata_license>
5 <project_license>GPL-3.0</project_license>
6 <name>SciQLOP</name>
7 <summary>SciQLOP (SCIentific Qt application for Learning from Observations of Plasmas)</summary>
8 <description>
9 <p>Efficient and Ergonomic application to explore spacecraft in situ plasma data and create catalogs of events.</p>
10 </description>
11 <launchable type="desktop-id">SciQLOP.desktop</launchable>
12 <url type="homepage">https://github.com/LaboratoryOfPlasmaPhysics/SciQLOP</url>
13 <screenshots>
14 <screenshot type="default">
15 <image>https://raw.githubusercontent.com/LaboratoryOfPlasmaPhysics/SciQLOP/master/pictures/sciqlop_screenshot.png</image>
16 </screenshot>
17 </screenshots>
18 <provides>
19 <id>SciQLOP.desktop</id>
20 </provides>
21 </component> No newline at end of file
@@ -29,6 +29,7 target_link_libraries(sciqlopapp
29
29
30 install(TARGETS sciqlopapp DESTINATION ${CMAKE_INSTALL_BINDIR})
30 install(TARGETS sciqlopapp DESTINATION ${CMAKE_INSTALL_BINDIR})
31 install(FILES resources/SciQLOP.desktop DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/applications/)
31 install(FILES resources/SciQLOP.desktop DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/applications/)
32 install(FILES resources/SciQLOP.appdata.xml DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/metainfo/)
32 install(FILES resources/sciqlopLOGO.svg DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/SciQLOP/icons/)
33 install(FILES resources/sciqlopLOGO.svg DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/SciQLOP/icons/)
33
34
34
35
@@ -24,6 +24,7 elif host_machine.system()=='windows'
24 elif host_machine.system()=='linux'
24 elif host_machine.system()=='linux'
25 install_data('app/resources/sciqlopLOGO.svg', install_dir : 'share/icons/hicolor/scalable/')
25 install_data('app/resources/sciqlopLOGO.svg', install_dir : 'share/icons/hicolor/scalable/')
26 install_data('app/resources/SciQLOP.desktop', install_dir : 'share/applications')
26 install_data('app/resources/SciQLOP.desktop', install_dir : 'share/applications')
27 install_data('app/resources/SciQLOP.appdata.xml', install_dir : 'share/metainfo')
27 endif
28 endif
28
29
29 # Sets AMDA server that will be used during execution.
30 # Sets AMDA server that will be used during execution.
@@ -47,4 +48,4 if cppcheck.found()
47 command : [cppcheck, '--enable=all',
48 command : [cppcheck, '--enable=all',
48 '--project=' + join_paths(meson.build_root(), 'compile_commands.json')]
49 '--project=' + join_paths(meson.build_root(), 'compile_commands.json')]
49 )
50 )
50 endif No newline at end of file
51 endif
General Comments 0
You need to be logged in to leave comments. Login now