Skip to content

Commit

Permalink
Merge pull request JuliaLang#8610 from palango/appdata
Browse files Browse the repository at this point in the history
Add appdata file
  • Loading branch information
nalimilan committed Oct 8, 2014
2 parents fbd4463 + b296f6a commit 49d87ad
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,9 @@ endif
-gtk-update-icon-cache $(DESTDIR)$(datarootdir)/icons/hicolor/
mkdir -p $(DESTDIR)$(datarootdir)/applications/
$(INSTALL_F) contrib/julia.desktop $(DESTDIR)$(datarootdir)/applications/
# Install appdata file
mkdir -p $(DESTDIR)$(datarootdir)/appdata/
$(INSTALL_F) contrib/julia.appdata.xml $(DESTDIR)$(datarootdir)/appdata/

# Update RPATH entries and JL_SYSTEM_IMAGE_PATH if $(private_libdir_rel) != $(build_private_libdir_rel)
ifneq ($(private_libdir_rel),$(build_private_libdir_rel))
Expand Down
28 changes: 28 additions & 0 deletions contrib/julia.appdata.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright 2014 Paul Lange <[email protected]> -->
<application>
<id type="desktop">julia.desktop</id>
<metadata_license>CC-BY-SA-3.0</metadata_license>
<project_license>MIT and LGPL-2.1+ and GPL-2.0+</project_license>
<description>
<p>
Julia is a high-level, high-performance dynamic programming language for
technical computing, with syntax that is familiar to users of other
technical computing environments. It provides a sophisticated compiler,
distributed parallel execution, numerical accuracy, and an extensive
mathematical function library.
</p>
<p>
The library, largely written in Julia itself,
also integrates mature, best-of-breed C and Fortran libraries for linear
algebra, random number generation, signal processing, and string processing.
In addition, the Julia developer community is contributing a number of
external packages through Julia’s built-in package manager at a rapid pace.
</p>
</description>
<screenshots>
<screenshot type="default">https://julialang.org/images/julia-gnome.png</screenshot>
</screenshots>
<url type="homepage">https://julialang.org/</url>
<updatecontact>[email protected]</updatecontact>
</application>

0 comments on commit 49d87ad

Please sign in to comment.