mirror of
https://github.com/LIV2/amiberry.git
synced 2025-12-05 22:22:44 +00:00
* added more mime types (fixes #1461) Refactored a few more files * Fixed path to Desktop file
This commit is contained in:
parent
0c5d05255e
commit
7ecdc36722
@ -37,7 +37,7 @@ install(DIRECTORY ${CMAKE_SOURCE_DIR}/roms
|
||||
install(DIRECTORY ${CMAKE_SOURCE_DIR}/whdboot
|
||||
DESTINATION ${CMAKE_INSTALL_DATADIR}/${PROJECT_NAME})
|
||||
# Install desktop file
|
||||
install(FILES ${CMAKE_SOURCE_DIR}/packaging/Amiberry.desktop
|
||||
install(FILES ${CMAKE_SOURCE_DIR}/packaging/linux/Amiberry.desktop
|
||||
DESTINATION ${CMAKE_INSTALL_DATADIR}/applications)
|
||||
# Install icon
|
||||
install(FILES ${CMAKE_SOURCE_DIR}/data/amiberry.svg
|
||||
@ -47,7 +47,9 @@ install(FILES ${CMAKE_SOURCE_DIR}/debian/changelog.gz
|
||||
DESTINATION ${CMAKE_INSTALL_DOCDIR})
|
||||
install(FILES ${CMAKE_SOURCE_DIR}/debian/copyright
|
||||
DESTINATION ${CMAKE_INSTALL_DOCDIR})
|
||||
install(FILES ${CMAKE_SOURCE_DIR}/packaging/amiberry.1.gz
|
||||
install(FILES ${CMAKE_SOURCE_DIR}/packaging/linux/man/amiberry.1.gz
|
||||
DESTINATION ${CMAKE_INSTALL_MANDIR}/man1)
|
||||
install(FILES ${CMAKE_SOURCE_DIR}/packaging/Amiberry.metainfo.xml
|
||||
install(FILES ${CMAKE_SOURCE_DIR}/packaging/linux/Amiberry.metainfo.xml
|
||||
DESTINATION ${CMAKE_INSTALL_DATADIR}/metainfo)
|
||||
install(FILES ${CMAKE_SOURCE_DIR}/packaging/linux/mime/amiberry.xml
|
||||
DESTINATION ${CMAKE_INSTALL_DATADIR}/mime/packages)
|
||||
5
debian/changelog
vendored
5
debian/changelog
vendored
@ -1,5 +0,0 @@
|
||||
amiberry (0.0.0-0) unstable; urgency=low
|
||||
|
||||
* Dummy changelog entry.
|
||||
|
||||
-- Dimitris Panokostas <midwan@gmail.com> Wed, 11 Sep 2024 18:53:49 +0200
|
||||
@ -27,7 +27,7 @@ Terminal = false
|
||||
# Describes the categories in which this entry should be shown
|
||||
Categories = Game;Emulator;
|
||||
|
||||
MimeType=application/x-amiga-disk-image;application/x-cue;application/octet-stream;
|
||||
MimeType=application/x-SPS-virtual-media-image;application/x-DMS-compressed-disk-image;application/x-amiga-disk-image;application/x-cue;application/x-WHDLoad-game-archive;
|
||||
|
||||
# Describes the encoding for the desktop entry
|
||||
Encoding=UTF-8
|
||||
29
packaging/linux/mime/amiberry.xml
Normal file
29
packaging/linux/mime/amiberry.xml
Normal file
@ -0,0 +1,29 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<mime-info xmlns="http://www.freedesktop.org/standards/shared-mime-info">
|
||||
<mime-type type="application/x-SPS-virtual-media-image">
|
||||
<comment>Interchangeable Preservation Format</comment>
|
||||
<generic-icon name="media-floppy"/>
|
||||
<magic priority="50">
|
||||
<match type="string" value="CAPS" offset="0"/>
|
||||
</magic>
|
||||
<glob pattern="*.ipf"/>
|
||||
</mime-type>
|
||||
<mime-type type="application/x-DMS-compressed-disk-image">
|
||||
<comment>Disk Masher System</comment>
|
||||
<generic-icon name="media-floppy"/>
|
||||
<magic priority="50">
|
||||
<match type="string" value="DMS!" offset="0"/>
|
||||
</magic>
|
||||
<glob pattern="*.dms"/>
|
||||
</mime-type>
|
||||
<mime-type type="application/x-WHDLoad-game-archive">
|
||||
<comment>WHDLoad Amiga Package</comment>
|
||||
<generic-icon name="package-x-generic"/>
|
||||
<magic-deleteall/>
|
||||
<magic priority="60">
|
||||
<match type="big32" value="0x001000084" offset="8:11"/>
|
||||
</magic>
|
||||
<glob-deleteall/>
|
||||
<glob pattern="*.lha"/>
|
||||
</mime-type>
|
||||
</mime-info>
|
||||
Loading…
x
Reference in New Issue
Block a user