Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added appdata.xml and .desktop file #2

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions 0verkill.appdata.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright 2016 Ferdinand Thiessen <rpm@fthiessen.de> -->
<component type="desktop">
<id>0verkill.desktop</id>
<metadata_license>CC0-1.0</metadata_license>
<project_license>GPL-2.0+</project_license>
<name>0verkill</name>
<summary>Bloody hell in ASCII art</summary>
<description>
<p>
2D ASCII art deathmatch jump'n'kill'n'smile_insane.
</p>
<p>
You were born to DIE - you will enjoy your death!
Your eyes gonna BULGE with horror...
IT is the game you always wanted to die playing !!!
This game will be your worst NIGHTMARE you ever had!
Power Statistics is a program used to view historical and current battery
information and will show programs running on your computer using power.
</p>
</description>
<screenshots>
<screenshot type="default">
<image>https://artax.karlin.mff.cuni.cz/~brain/0verkill/images/grab1.png</image>
</screenshot>
<screenshot>
<image>https://artax.karlin.mff.cuni.cz/~brain/0verkill/images/grab6.png</image>
</screenshot>
<screenshot>
<image>https://artax.karlin.mff.cuni.cz/~brain/0verkill/images/grab11.png</image>
</screenshot>
</screenshots>
<url type="homepage">https://github.com/hackndev/0verkill</url>
</component>
9 changes: 9 additions & 0 deletions 0verkill.desktop
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[Desktop Entry]
Name=0verkill
GenericName=0verkill
Comment=Bloody hell in ASCII art
Icon=0verkill
Exec=x0verkill
Terminal=false
Type=Application
Categories=Game;ActionGame;
Binary file added 0verkill.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 6 additions & 1 deletion Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,12 @@ install: all
$(INSTALL) -d -m 755 "$(DESTDIR)$(BASEDIR)"/grx
$(INSTALL) -m 644 data/* "$(DESTDIR)$(BASEDIR)"/data
$(INSTALL) -m 644 grx/* "$(DESTDIR)$(BASEDIR)"/grx

$(INSTALL) -d -m 755 "$(DESTDIR)$(datadir)/appdata"
$(INSTALL) -m 644 *.appdata.xml "$(DESTDIR)$(datadir)/appdata"
$(INSTALL) -d -m 755 "$(DESTDIR)$(datadir)/pixmaps"
$(INSTALL) -m 644 0verkill.png "$(DESTDIR)$(datadir)/pixmaps/0verkill.png"
$(INSTALL) -d -m 755 "$(DESTDIR)$(datadir)/applications"
$(INSTALL) -m 644 *.desktop "$(DESTDIR)$(datadir)/applications"

clean:
rm -f *.o server 0verkill editor test_server x0verkill xeditor avi xavi bot core
Expand Down
2 changes: 1 addition & 1 deletion purge
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh
rm -f config.status config.cache config.log config.h Makefile
rm -f *.o
rm -f 0verkill avi editor server test_server x0verkill xeditor bot xavi
Expand Down
2 changes: 1 addition & 1 deletion rebuild
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh
./purge
aclocal
autoheader
Expand Down