diff --git a/Makefile b/Makefile index e9af936..bc81173 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,6 @@ CC = gcc DESTDIR = /usr/bin +SHAREDIR = /usr/share CFLAGS = -Wall -Wextra -g PKG_CONFIG = pkg-config GTK_LIBS = $(shell $(PKG_CONFIG) --libs gtk+-3.0) @@ -28,3 +29,8 @@ clean: install: pageburger mkdir -p $(DESTDIR) cp pageburger $(DESTDIR) + mkdir -p $(SHAREDIR)/icons/hicolor/512x512/apps/ + mkdir -p $(SHAREDIR)/applications/ + cp pageburger.png $(SHAREDIR)/icons/hicolor/512x512/apps/ + cp pageburger.desktop $(SHAREDIR)/applications/ + cp org.hectabit.PageBurger.metainfo.xml $(SHAREDIR)/metainfo/ diff --git a/org.hectabit.PageBurger.metainfo.xml b/org.hectabit.PageBurger.metainfo.xml new file mode 100644 index 0000000..6d01ce1 --- /dev/null +++ b/org.hectabit.PageBurger.metainfo.xml @@ -0,0 +1,43 @@ + + + org.hectabit.PageBurger + + PageBurger + Simple, private noting service + + MIT + GPL-3.0-or-later + + + pointing + keyboard + touch + + + +

+ Simple and private noting service that syncs across all devices +

+
+ + org.hectabit.PageBurger.desktop + + + https://www.hectabit.org/assets/img/screenshot.png + + + https://www.hectabit.org/assets/img/screenshot2.png + + + + pageburger + + + Office + WordProcessor + + + + pageburger + +
diff --git a/pageburger.desktop b/pageburger.desktop new file mode 100644 index 0000000..8eb2e29 --- /dev/null +++ b/pageburger.desktop @@ -0,0 +1,7 @@ +[Desktop Entry] +Type=Application +Name=PageBurger +Comment=Simple, private noting service +Icon=pageburger +Exec=pageburger +Categories=Office;WordProcessor diff --git a/pageburger.png b/pageburger.png new file mode 100644 index 0000000..8df9451 Binary files /dev/null and b/pageburger.png differ