-
Notifications
You must be signed in to change notification settings - Fork 254
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Add svg icon installed into a standard icons dir instead of the non-standard dimensions png in pixmaps - Rename the desktop icon to just "gpredict" to match desktop file name - Add AppStream metainfo file - Fix Makefile formatting
- Loading branch information
Showing
13 changed files
with
154 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
SUBDIRS = satdata desktop | ||
SUBDIRS = satdata desktop metainfo | ||
|
||
gpredict_datdir = $(pkgdatadir)/data | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
gpredict_metainfodir = $(datadir)/metainfo | ||
|
||
gpredict_metainfo_DATA = dk.oz9aec.Gpredict.metainfo.xml | ||
|
||
EXTRA_DIST = $(gpredict_metainfo_DATA) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<component type="desktop-application"> | ||
<id>dk.oz9aec.Gpredict</id> | ||
<name>Gpredict</name> | ||
<developer_name>Alexandru Csete</developer_name> | ||
<summary>Real-time satellite tracking and orbit prediction program</summary> | ||
<description> | ||
<p>Gpredict is a real time satellite tracking and orbit prediction program written using the Gtk+ widgets.</p> | ||
<p>Gpredict is targeted mainly towards ham radio operators but others interested in satellite tracking may find it useful as well.</p> | ||
</description> | ||
<categories> | ||
<category>Astronomy</category> | ||
<category>Education</category> | ||
<category>HamRadio</category> | ||
<category>Network</category> | ||
<category>Science</category> | ||
</categories> | ||
<metadata_license>CC-BY-SA-3.0</metadata_license> | ||
<project_license>GPL-2.0+</project_license> | ||
<provides> | ||
<id>gpredict.desktop</id> | ||
</provides> | ||
<url type="homepage">https://oz9aec.dk/gpredict/</url> | ||
<screenshots> | ||
<screenshot type="default"> | ||
<image>https://live.staticflickr.com/8089/28902144392_8cd36d57fe_b.jpg</image> | ||
</screenshot> | ||
</screenshots> | ||
<launchable type="desktop-id">gpredict.desktop</launchable> | ||
<content_rating type="oars-1.1" /> | ||
</component> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
|
||
gpredict_satdir = $(pkgdatadir)/data/satdata | ||
|
||
gpredict_sat_DATA = satellites.dat *.cat | ||
|
||
EXTRA_DIST = $(gpredict_sat_DATA) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Makefile | ||
Makefile.in |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
gpredict_iconsdir = $(datadir)/icons/hicolor/scalable/apps | ||
gpredict_icons_DATA = gpredict.svg | ||
|
||
EXTRA_DIST = $(gpredict_icons_DATA) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters