Fixes and improvements to XDG installation
This commit is contained in:
parent
3c0f4d458d
commit
cd2e4b3cef
17
FreeDesktop/sameboy.xml
Normal file
17
FreeDesktop/sameboy.xml
Normal file
@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<mime-info xmlns='http://www.freedesktop.org/standards/shared-mime-info'>
|
||||
<mime-type type="application/x-gameboy-rom">
|
||||
<comment>Game Boy ROM</comment>
|
||||
<icon name="x-gameboy-rom"/>
|
||||
<glob-deleteall/>
|
||||
<glob pattern="*.gb"/>
|
||||
<glob pattern="*.sgb"/>
|
||||
</mime-type>
|
||||
<mime-type type="application/x-gameboy-color-rom">
|
||||
<comment>Game Boy Color ROM</comment>
|
||||
<icon name="x-gameboy-color-rom"/>
|
||||
<glob-deleteall/>
|
||||
<glob pattern="*.gbc"/>
|
||||
<glob pattern="*.cgb"/>
|
||||
</mime-type>
|
||||
</mime-info>
|
10
FreeDesktop/x-gameboy-color-rom.xml
Normal file
10
FreeDesktop/x-gameboy-color-rom.xml
Normal file
@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<mime-info xmlns='http://www.freedesktop.org/standards/shared-mime-info'>
|
||||
<mime-type type="application/x-gameboy-color-rom">
|
||||
<comment>YOUR MOM</comment>
|
||||
<icon name="application-x-gameboy-color-rom"/>
|
||||
<glob pattern="*.gbc"/>
|
||||
<glob pattern="*.cgb"/>
|
||||
<glob pattern="*.quacky"/>
|
||||
</mime-type>
|
||||
</mime-info>
|
16
Makefile
16
Makefile
@ -434,23 +434,33 @@ libretro:
|
||||
# If you somehow find a reasonable way to make associate an icon with an extension in this dumpster
|
||||
# fire of a desktop environment, open an issue or a pull request
|
||||
ifneq ($(CAN_INSTALL),)
|
||||
ICON_NAMES := apps/sameboy
|
||||
ICON_NAMES := apps/sameboy mimetypes/x-gameboy-rom mimetypes/x-gameboy-color-rom
|
||||
ICON_SIZES := 16x16 32x32 64x64 128x128 256x256 512x512
|
||||
ICONS := $(foreach name,$(ICON_NAMES), $(foreach size,$(ICON_SIZES),$(DESTDIR)$(PREFIX)/share/icons/hicolor/$(size)/$(name).png))
|
||||
install: sdl $(DESTDIR)$(PREFIX)/share/applications/sameboy.desktop $(ICONS)(PREFIX)/share/mime/application/x-gameboy-color-rom.xml
|
||||
install: sdl $(DESTDIR)$(PREFIX)/share/applications/sameboy.desktop $(ICONS) FreeDesktop/sameboy.xml
|
||||
mkdir -p $(DESTDIR)$(PREFIX)/share/sameboy/
|
||||
cp -rf $(BIN)/SDL/* $(DESTDIR)$(PREFIX)/share/sameboy/
|
||||
mv $(DESTDIR)$(PREFIX)/share/sameboy/sameboy $(DESTDIR)$(PREFIX)/bin/sameboy
|
||||
ifeq ($(DESTDIR),)
|
||||
-update-mime-database -n $(PREFIX)/mime
|
||||
-xdg-desktop-menu install --mode system FreeDesktop/sameboy.xml
|
||||
-xdg-icon-resource forceupdate --mode system
|
||||
-xdg-desktop-menu forceupdate --mode system
|
||||
-su $(SUDO_USER) -c "xdg-desktop-menu forceupdate --mode system"
|
||||
endif
|
||||
|
||||
$(DESTDIR)$(PREFIX)/share/icons/hicolor/%/apps/sameboy.png: FreeDesktop/AppIcon/%.png
|
||||
-@$(MKDIR) -p $(dir $@)
|
||||
cp -f $^ $@
|
||||
|
||||
|
||||
$(DESTDIR)$(PREFIX)/share/icons/hicolor/%/mimetypes/x-gameboy-rom.png: FreeDesktop/Cartridge/%.png
|
||||
-@$(MKDIR) -p $(dir $@)
|
||||
cp -f $^ $@
|
||||
|
||||
$(DESTDIR)$(PREFIX)/share/icons/hicolor/%/mimetypes/x-gameboy-color-rom.png: FreeDesktop/ColorCartridge/%.png
|
||||
-@$(MKDIR) -p $(dir $@)
|
||||
cp -f $^ $@
|
||||
|
||||
$(DESTDIR)$(PREFIX)/share/applications/sameboy.desktop: FreeDesktop/sameboy.desktop
|
||||
-@$(MKDIR) -p $(dir $@)
|
||||
cp -f $^ $@
|
||||
|
Loading…
Reference in New Issue
Block a user