-
Notifications
You must be signed in to change notification settings - Fork 6
/
addons_le_generic.xml
4829 lines (4829 loc) · 272 KB
/
addons_le_generic.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version='1.0' encoding='UTF-8'?>
<addons>
<addon id="game.libretro.prboom_libretro_buildbot" name="Doom (PrBoom)" version="1.2024.19888" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
<import addon="game.controller.mouse"/>
<import addon="game.controller.default"/>
<import addon="game.controller.keyboard"/>
</requires>
<extension point="kodi.gameclient" library_linux="prboom_libretro.so">
<platforms>DOOM Game Engine</platforms>
<extensions>wad|iwad|pwad</extensions>
<supports_vfs>false</supports_vfs>
<supports_standalone>false</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Doom (PrBoom)</summary>
<description lang="en_GB">Game for DOOM Game Engine by Florian Schulze[CR]Supported files: wad|iwad|pwad[CR][CR]Game Addon Notes: (!) PrBoom requires data ROM 'prboom.wad' inside the ROM directory.|(!) Load Content 'doom1.wad'.</description>
<license>GPLv2</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/prboom_libretro.so.zip</source>
<news>Built from libretro buildbot commit 5fc7714e (2024-06-14)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<size>661926</size>
<path>linux_le_generic/game.libretro.prboom_libretro_buildbot-1.2024.19888.zip</path>
</extension>
</addon>
<addon id="game.libretro.mame2000_libretro_buildbot" name="Arcade (MAME 2000)" version="1.2024.19888" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
</requires>
<extension point="kodi.gameclient" library_linux="mame2000_libretro.so">
<platforms>Arcade (various)</platforms>
<extensions>zip|7z|chd</extensions>
<supports_vfs>false</supports_vfs>
<supports_standalone>false</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Arcade (MAME 2000)</summary>
<description lang="en_GB">Emulator for Arcade (various) by MAMEdev[CR]Supported files: zip|7z|chd[CR][CR]Game Addon Notes: (!) The BIOS files must be inside the ROM directory.|</description>
<license>MAME</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/mame2000_libretro.so.zip</source>
<news>Built from libretro buildbot commit 30f32ae7 (2024-06-14)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<size>3665942</size>
<path>linux_le_generic/game.libretro.mame2000_libretro_buildbot-1.2024.19888.zip</path>
</extension>
</addon>
<addon id="game.libretro.play_libretro_buildbot" name="Sony - PlayStation 2 (Play!)" version="1.2024.19888" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
</requires>
<extension point="kodi.gameclient" library_linux="play_libretro.so">
<platforms>Sony PlayStation 2</platforms>
<extensions>chd|cso|cue|elf|iso|isz</extensions>
<supports_vfs>false</supports_vfs>
<supports_standalone>false</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Sony - PlayStation 2 (Play!)</summary>
<description lang="en_GB">Emulator for Sony PlayStation 2 by Jean-Philip Desjardins[CR]Supported files: chd|cso|cue|elf|iso|isz</description>
<license>MIT</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/play_libretro.so.zip</source>
<news>Built from libretro buildbot commit ceb8b6c7 (2024-06-14)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<size>2441456</size>
<path>linux_le_generic/game.libretro.play_libretro_buildbot-1.2024.19888.zip</path>
<broken>Not yet compatible</broken>
</extension>
</addon>
<addon id="game.libretro.virtualjaguar_libretro_buildbot" name="Atari - Jaguar (Virtual Jaguar)" version="1.2024.19888" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
<import addon="game.controller.default"/>
</requires>
<extension point="kodi.gameclient" library_linux="virtualjaguar_libretro.so">
<platforms>Jaguar</platforms>
<extensions>j64|jag|rom|abs|cof|bin|prg</extensions>
<supports_vfs>true</supports_vfs>
<supports_standalone>false</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Atari - Jaguar (Virtual Jaguar)</summary>
<description lang="en_GB">Emulator for Jaguar by David Raingeard|Shamus[CR]Supported files: j64|jag|rom|abs|cof|bin|prg</description>
<license>GPLv3</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/virtualjaguar_libretro.so.zip</source>
<news>Built from libretro buildbot commit fca03e10 (2024-06-14)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<size>862938</size>
<path>linux_le_generic/game.libretro.virtualjaguar_libretro_buildbot-1.2024.19888.zip</path>
</extension>
</addon>
<addon id="game.libretro.opera_libretro_buildbot" name="The 3DO Company - 3DO (Opera)" version="1.2024.19888" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
<import addon="game.controller.3do"/>
</requires>
<extension point="kodi.gameclient" library_linux="opera_libretro.so">
<platforms>3DO</platforms>
<extensions>iso|bin|chd|cue</extensions>
<supports_vfs>false</supports_vfs>
<supports_standalone>true</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">The 3DO Company - 3DO (Opera)</summary>
<description lang="en_GB">Emulator for 3DO by trapexit|JohnnyDude|FreeDO team[CR]Supported files: iso|bin|chd|cue[CR][CR]Game Addon Notes: (!) panafz1.bin (md5): f47264dd47fe30f73ab3c010015c155b|(!) panafz10.bin (md5): 51f2f43ae2f3508a14d9f56597e2d3ce|(!) panafz10-norsa.bin (md5): 1477bda80dc33731a65468c1f5bcbee9|(!) panafz10e-anvil.bin (md5): a48e6746bd7edec0f40cff078f0bb19f|(!) panafz10e-anvil-norsa.bin (md5): cf11bbb5a16d7af9875cca9de9a15e09|(!) goldstar.bin (md5): 8639fd5e549bd6238cfee79e3e749114|(!) sanyotry.bin (md5): 35fa1a1ebaaeea286dc5cd15487c13ea|(!) 3do_arcade_saot.bin (md5): 8970fc987ab89a7f64da9f8a8c4333ff|(!) panafz1-kanji.bin (md5): b8dc97f778a6245c58e064b0312e8281|(!) panafz10ja-anvil-kanji.bin (md5): 428577250f43edc902ea239c50d2240d|(!) panafz1j.bin (md5): a496cfdded3da562759be3561317b605|(!) panafz1j-norsa.bin (md5): f6c71de7470d16abe4f71b1444883dc8|(!) panafz1j-kanji.bin (md5): c23fb5d5e6bb1c240d02cf968972be37</description>
<license>LGPL/Non-commercial</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/opera_libretro.so.zip</source>
<news>Built from libretro buildbot commit fe336534 (2024-06-14)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<size>297560</size>
<path>linux_le_generic/game.libretro.opera_libretro_buildbot-1.2024.19888.zip</path>
</extension>
</addon>
<addon id="game.libretro.crocods_libretro_buildbot" name="Amstrad - CPC (CrocoDS)" version="1.2024.19888" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
</requires>
<extension point="kodi.gameclient" library_linux="crocods_libretro.so">
<platforms>CPC</platforms>
<extensions>dsk|sna|kcr</extensions>
<supports_vfs>true</supports_vfs>
<supports_standalone>false</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Amstrad - CPC (CrocoDS)</summary>
<description lang="en_GB">Emulator for CPC by RedBug[CR]Supported files: dsk|sna|kcr</description>
<license>MIT</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/crocods_libretro.so.zip</source>
<news>Built from libretro buildbot commit c886732e (2024-06-14)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<size>307641</size>
<path>linux_le_generic/game.libretro.crocods_libretro_buildbot-1.2024.19888.zip</path>
</extension>
</addon>
<addon id="game.libretro.mednafen_vb_libretro_buildbot" name="Nintendo - Virtual Boy (Beetle VB)" version="1.2024.19888" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
<import addon="game.controller.vb"/>
</requires>
<extension point="kodi.gameclient" library_linux="mednafen_vb_libretro.so">
<platforms>Virtual Boy</platforms>
<extensions>vb|vboy|bin</extensions>
<supports_vfs>true</supports_vfs>
<supports_standalone>false</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Nintendo - Virtual Boy (Beetle VB)</summary>
<description lang="en_GB">Emulator for Virtual Boy by Mednafen Team[CR]Supported files: vb|vboy|bin</description>
<license>GPLv2</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/mednafen_vb_libretro.so.zip</source>
<news>Built from libretro buildbot commit 641eacb4 (2024-06-14)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<size>256586</size>
<path>linux_le_generic/game.libretro.mednafen_vb_libretro_buildbot-1.2024.19888.zip</path>
</extension>
</addon>
<addon id="game.libretro.bsnes_cplusplus98_libretro_buildbot" name="Nintendo - SNES / SFC (bsnes C++98 (v085))" version="1.2024.19888" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
<import addon="game.controller.snes"/>
</requires>
<extension point="kodi.gameclient" library_linux="bsnes_cplusplus98_libretro.so">
<platforms>Super Nintendo Entertainment System</platforms>
<extensions>sfc|smc|gb|gbc|st|bs</extensions>
<supports_vfs>true</supports_vfs>
<supports_standalone>false</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Nintendo - SNES / SFC (bsnes C++98 (v085))</summary>
<description lang="en_GB">Emulator for Super Nintendo Entertainment System by Near|Themaister|Ver GreenEyes[CR]Supported files: sfc|smc|gb|gbc|st|bs</description>
<license>GPLv3</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/bsnes_cplusplus98_libretro.so.zip</source>
<news>Built from libretro buildbot commit 17410293 (2024-06-14)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<size>419520</size>
<path>linux_le_generic/game.libretro.bsnes_cplusplus98_libretro_buildbot-1.2024.19888.zip</path>
<broken>Not yet compatible</broken>
</extension>
</addon>
<addon id="game.libretro.mednafen_ngp_libretro_buildbot" name="SNK - Neo Geo Pocket / Color (Beetle NeoPop)" version="1.2024.19888" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
<import addon="game.controller.ngp"/>
</requires>
<extension point="kodi.gameclient" library_linux="mednafen_ngp_libretro.so">
<platforms>Neo Geo Pocket (Color)</platforms>
<extensions>ngp|ngc|ngpc|npc</extensions>
<supports_vfs>false</supports_vfs>
<supports_standalone>false</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">SNK - Neo Geo Pocket / Color (Beetle NeoPop)</summary>
<description lang="en_GB">Emulator for Neo Geo Pocket (Color) by neopop_uk|Mednafen Team[CR]Supported files: ngp|ngc|ngpc|npc</description>
<license>GPLv2</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/mednafen_ngp_libretro.so.zip</source>
<news>Built from libretro buildbot commit 451b57b3 (2024-06-14)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<size>195528</size>
<path>linux_le_generic/game.libretro.mednafen_ngp_libretro_buildbot-1.2024.19888.zip</path>
</extension>
</addon>
<addon id="game.libretro.snes9x2002_libretro_buildbot" name="Nintendo - SNES / SFC (Snes9x 2002)" version="1.2024.19888" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
<import addon="game.controller.snes.multitap"/>
<import addon="game.controller.snes.super.scope"/>
<import addon="game.controller.konami.justifier.snes"/>
<import addon="game.controller.snes.mouse"/>
<import addon="game.controller.snes"/>
</requires>
<extension point="kodi.gameclient" library_linux="snes9x2002_libretro.so">
<platforms>Super Nintendo Entertainment System</platforms>
<extensions>smc|fig|sfc|gd3|gd7|dx2|bsx|swc</extensions>
<supports_vfs>true</supports_vfs>
<supports_standalone>false</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Nintendo - SNES / SFC (Snes9x 2002)</summary>
<description lang="en_GB">Emulator for Super Nintendo Entertainment System by Snes9x Team|PocketSNES Team|Toadking[CR]Supported files: smc|fig|sfc|gd3|gd7|dx2|bsx|swc</description>
<license>Non-commercial</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/snes9x2002_libretro.so.zip</source>
<news>Built from libretro buildbot commit f42d3ca3 (2024-06-14)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<size>357865</size>
<path>linux_le_generic/game.libretro.snes9x2002_libretro_buildbot-1.2024.19888.zip</path>
</extension>
</addon>
<addon id="game.libretro.mame2003_midway_libretro_buildbot" name="Arcade (MAME 2003 Midway)" version="1.2024.19888" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
</requires>
<extension point="kodi.gameclient" library_linux="mame2003_midway_libretro.so">
<platforms>Arcade (various)</platforms>
<extensions>zip</extensions>
<supports_vfs>false</supports_vfs>
<supports_standalone>false</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Arcade (MAME 2003 Midway)</summary>
<description lang="en_GB">Emulator for Arcade (various) by MAMEdev[CR]Supported files: zip[CR][CR]Game Addon Notes: (!) The BIOS files must be inside the ROM directory.|</description>
<license>MAME</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/mame2003_midway_libretro.so.zip</source>
<news>Built from libretro buildbot commit e5a82cc1 (2024-06-14)</news>
<assets/>
<size>872107</size>
<path>linux_le_generic/game.libretro.mame2003_midway_libretro_buildbot-1.2024.19888.zip</path>
</extension>
</addon>
<addon id="game.libretro.uzem_libretro_buildbot" name="Uzebox (Uzem)" version="1.2024.19888" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
</requires>
<extension point="kodi.gameclient" library_linux="uzem_libretro.so">
<platforms>Uzebox</platforms>
<extensions>uze</extensions>
<supports_vfs>true</supports_vfs>
<supports_standalone>false</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Uzebox (Uzem)</summary>
<description lang="en_GB">Emulator for Uzebox[CR]Supported files: uze</description>
<license>MIT</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/uzem_libretro.so.zip</source>
<news>Built from libretro buildbot commit dc6351bb (2024-06-14)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<size>114122</size>
<path>linux_le_generic/game.libretro.uzem_libretro_buildbot-1.2024.19888.zip</path>
</extension>
</addon>
<addon id="game.libretro.fbneo_libretro_buildbot" name="Arcade (FinalBurn Neo)" version="1.2024.19888" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
<import addon="game.controller.default"/>
</requires>
<extension point="kodi.gameclient" library_linux="fbneo_libretro.so">
<platforms>Arcade (various)</platforms>
<extensions>zip|7z|cue|ccd</extensions>
<supports_vfs>false</supports_vfs>
<supports_standalone>false</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Arcade (FinalBurn Neo)</summary>
<description lang="en_GB">Emulator for Arcade (various) by Team FBNeo[CR]Supported files: zip|7z|cue|ccd[CR][CR]Game Addon Notes: (!) The BIOS files can also be inside the ROM directory or the root of SYSTEM directory.|(!) Homepage : https://neo-source.com/</description>
<license>Non-commercial</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/fbneo_libretro.so.zip</source>
<news>Built from libretro buildbot commit 8b9d6060 (2024-06-14)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<size>14409896</size>
<path>linux_le_generic/game.libretro.fbneo_libretro_buildbot-1.2024.19888.zip</path>
</extension>
</addon>
<addon id="game.libretro.gpsp_libretro_buildbot" name="Nintendo - Game Boy Advance (gpSP)" version="1.2024.19888" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
</requires>
<extension point="kodi.gameclient" library_linux="gpsp_libretro.so">
<platforms>Game Boy Advance</platforms>
<extensions>gba|bin</extensions>
<supports_vfs>false</supports_vfs>
<supports_standalone>false</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Nintendo - Game Boy Advance (gpSP)</summary>
<description lang="en_GB">Emulator for Game Boy Advance by Exophase[CR]Supported files: gba|bin[CR][CR]Game Addon Notes: (!) gba_bios.bin (md5): a860e8c0b6d573d191e4ec7db1b1e4f6[CR][CR]BIOS files are required for this core to function correctly</description>
<license>GPLv2</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/gpsp_libretro.so.zip</source>
<news>Built from libretro buildbot commit 37e4dfb5 (2024-06-14)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<size>388967</size>
<path>linux_le_generic/game.libretro.gpsp_libretro_buildbot-1.2024.19888.zip</path>
</extension>
</addon>
<addon id="game.libretro.mame2003_libretro_buildbot" name="Arcade (MAME 2003)" version="1.2024.19888" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
</requires>
<extension point="kodi.gameclient" library_linux="mame2003_libretro.so">
<platforms>Arcade (various)</platforms>
<extensions>zip</extensions>
<supports_vfs>false</supports_vfs>
<supports_standalone>false</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Arcade (MAME 2003)</summary>
<description lang="en_GB">Emulator for Arcade (various) by MAMEdev[CR]Supported files: zip[CR][CR]Game Addon Notes: (!) The BIOS files must be inside the ROM directory.|</description>
<license>MAME</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/mame2003_libretro.so.zip</source>
<news>Built from libretro buildbot commit f86a6d31 (2024-06-14)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<size>8666883</size>
<path>linux_le_generic/game.libretro.mame2003_libretro_buildbot-1.2024.19888.zip</path>
</extension>
</addon>
<addon id="game.libretro.puae2021_libretro_buildbot" name="Commodore - Amiga (PUAE 2021)" version="1.2024.19888" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
<import addon="game.controller.mouse"/>
<import addon="game.controller.keyboard"/>
<import addon="game.controller.amiga.cd32"/>
</requires>
<extension point="kodi.gameclient" library_linux="puae2021_libretro.so">
<platforms>Amiga</platforms>
<extensions>adf|adz|dms|fdi|ipf|hdf|hdz|lha|slave|info|cue|ccd|nrg|mds|iso|chd|uae|m3u|zip|7z|rp9</extensions>
<supports_vfs>false</supports_vfs>
<supports_standalone>true</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Commodore - Amiga (PUAE 2021)</summary>
<description lang="en_GB">Emulator for Amiga by UAE Team[CR]Supported files: adf|adz|dms|fdi|ipf|hdf|hdz|lha|slave|info|cue|ccd|nrg|mds|iso|chd|uae|m3u|zip|7z|rp9[CR][CR]Game Addon Notes: (!) kick33180.A500 (md5): 85ad74194e87c08904327de1a9443b7a|(!) kick34005.A500 (md5): 82a21c1890cae844b3df741f2762d48d|(!) kick37175.A500 (md5): dc10d7bdd1b6f450773dfb558477c230|(!) kick37350.A600 (md5): 465646c9b6729f77eea5314d1f057951|(!) kick40063.A600 (md5): e40a5dfb3d017ba8779faba30cbd1c8e|(!) kick39106.A1200 (md5): b7cc148386aa631136f510cd29e42fc3|(!) kick40068.A1200 (md5): 646773759326fbac3b2311fd8c8793ee|(!) kick39106.A4000 (md5): 9b8bdd5a3fd32c2a5a6f5b1aefc799a5|(!) kick40068.A4000 (md5): 9bdedde6a4f33555b4a270c8ca53297d|(!) kick34005.CDTV (md5): 89da1838a24460e4b93f4f0c5d92d48d|(!) kick40060.CD32 (md5): 5f8924d013dd57a89cf349f4cdedc6b1|(!) kick40060.CD32.ext (md5): bb72565701b1b6faece07d68ea5da639[CR][CR]BIOS files are required for this core to function correctly</description>
<license>GPLv2</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/puae2021_libretro.so.zip</source>
<news>Built from libretro buildbot commit b899fd53 (2024-06-14)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<size>4179646</size>
<path>linux_le_generic/game.libretro.puae2021_libretro_buildbot-1.2024.19888.zip</path>
</extension>
</addon>
<addon id="game.libretro.jumpnbump_libretro_buildbot" name="Jump 'n Bump" version="1.2024.19888" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
<import addon="game.controller.default"/>
</requires>
<extension point="kodi.gameclient" library_linux="jumpnbump_libretro.so">
<platforms/>
<extensions>dat</extensions>
<supports_vfs>true</supports_vfs>
<supports_standalone>false</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Jump 'n Bump</summary>
<description lang="en_GB">Game engine for jumpnbump by Philippe Simons[CR]Supported files: dat</description>
<license>GPLv2</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/jumpnbump_libretro.so.zip</source>
<news>Built from libretro buildbot commit df847277 (2024-06-14)</news>
<assets/>
<size>54106</size>
<path>linux_le_generic/game.libretro.jumpnbump_libretro_buildbot-1.2024.19888.zip</path>
</extension>
</addon>
<addon id="game.libretro.mednafen_supergrafx_libretro_buildbot" name="NEC - PC Engine SuperGrafx (Beetle SuperGrafx)" version="1.2024.19888" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
<import addon="game.controller.pce"/>
</requires>
<extension point="kodi.gameclient" library_linux="mednafen_supergrafx_libretro.so">
<platforms>PC Engine SuperGrafx</platforms>
<extensions>pce|sgx|cue|ccd|chd</extensions>
<supports_vfs>false</supports_vfs>
<supports_standalone>false</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">NEC - PC Engine SuperGrafx (Beetle SuperGrafx)</summary>
<description lang="en_GB">Emulator for PC Engine SuperGrafx by Mednafen Team[CR]Supported files: pce|sgx|cue|ccd|chd[CR][CR]Game Addon Notes: (!) syscard3.pce (md5): 38179df8f4ac870017db21ebcbf53114</description>
<license>GPLv2</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/mednafen_supergrafx_libretro.so.zip</source>
<news>Built from libretro buildbot commit af3ada7d (2024-06-14)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<size>609952</size>
<path>linux_le_generic/game.libretro.mednafen_supergrafx_libretro_buildbot-1.2024.19888.zip</path>
</extension>
</addon>
<addon id="game.libretro.pcsx_rearmed_libretro_buildbot" name="Sony - PlayStation (PCSX ReARMed)" version="1.2024.19888" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
<import addon="game.controller.ps.dualshock"/>
<import addon="game.controller.ps.guncon.japan"/>
<import addon="game.controller.ps.gamepad"/>
<import addon="game.controller.ps.mouse"/>
<import addon="game.controller.ps.dualanalog"/>
<import addon="game.controller.ps.guncon.western"/>
</requires>
<extension point="kodi.gameclient" library_linux="pcsx_rearmed_libretro.so">
<platforms>PlayStation</platforms>
<extensions>bin|cue|img|mdf|pbp|toc|cbn|m3u|ccd|chd|iso|exe</extensions>
<supports_vfs>false</supports_vfs>
<supports_standalone>false</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Sony - PlayStation (PCSX ReARMed)</summary>
<description lang="en_GB">Emulator for PlayStation by PCSX Team|notaz|Exophase[CR]Supported files: bin|cue|img|mdf|pbp|toc|cbn|m3u|ccd|chd|iso|exe[CR][CR]Game Addon Notes: (!) scph5500.bin (md5): 8dd7d5296a650fac7319bce665a6a53c|(!) scph5501.bin (md5): 490f666e1afb15b7362b406ed1cea246|(!) scph5502.bin (md5): 32736f17079d0b2b7024407c39bd3050</description>
<license>GPLv2</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/pcsx_rearmed_libretro.so.zip</source>
<news>Built from libretro buildbot commit 8150ed30 (2024-06-14)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<size>723311</size>
<path>linux_le_generic/game.libretro.pcsx_rearmed_libretro_buildbot-1.2024.19888.zip</path>
</extension>
</addon>
<addon id="game.libretro.81_libretro_buildbot" name="Sinclair - ZX 81 (EightyOne)" version="1.2024.19888" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
<import addon="game.controller.mouse"/>
<import addon="game.controller.joystick.4button"/>
<import addon="game.controller.keyboard"/>
<import addon="game.controller.joystick.2button"/>
</requires>
<extension point="kodi.gameclient" library_linux="81_libretro.so">
<platforms>ZX81</platforms>
<extensions>p|tzx|t81</extensions>
<supports_vfs>true</supports_vfs>
<supports_standalone>false</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Sinclair - ZX 81 (EightyOne)</summary>
<description lang="en_GB">Emulator for ZX81 by Michael D Wynne[CR]Supported files: p|tzx|t81[CR][CR]Game Addon Notes: [1] Amstrad have kindly given their permission for the redistribution|[^] of their copyrighted material but retain that copyright.</description>
<license>GPLv3</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/81_libretro.so.zip</source>
<news>Built from libretro buildbot commit f935e7dc (2024-06-14)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<size>159214</size>
<path>linux_le_generic/game.libretro.81_libretro_buildbot-1.2024.19888.zip</path>
</extension>
</addon>
<addon id="game.libretro.snes9x2010_libretro_buildbot" name="Nintendo - SNES / SFC (Snes9x 2010)" version="1.2024.19888" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
<import addon="game.controller.snes.multitap"/>
<import addon="game.controller.snes.super.scope"/>
<import addon="game.controller.konami.justifier.snes"/>
<import addon="game.controller.snes.mouse"/>
<import addon="game.controller.snes"/>
</requires>
<extension point="kodi.gameclient" library_linux="snes9x2010_libretro.so">
<platforms>Super Nintendo Entertainment System</platforms>
<extensions>smc|fig|sfc|gd3|gd7|dx2|bsx|swc</extensions>
<supports_vfs>true</supports_vfs>
<supports_standalone>false</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Nintendo - SNES / SFC (Snes9x 2010)</summary>
<description lang="en_GB">Emulator for Super Nintendo Entertainment System by Snes9x Team|Squarepusher[CR]Supported files: smc|fig|sfc|gd3|gd7|dx2|bsx|swc</description>
<license>Non-commercial</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/snes9x2010_libretro.so.zip</source>
<news>Built from libretro buildbot commit 8a396bd2 (2024-06-14)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<size>895152</size>
<path>linux_le_generic/game.libretro.snes9x2010_libretro_buildbot-1.2024.19888.zip</path>
</extension>
</addon>
<addon id="game.libretro.bsnes2014_balanced_libretro_buildbot" name="Nintendo - SNES / SFC (bsnes 2014 Balanced)" version="1.2024.19888" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
<import addon="game.controller.snes.super.scope"/>
<import addon="game.controller.konami.justifier.snes"/>
<import addon="game.controller.konami.justifier.player2"/>
<import addon="game.controller.snes.mouse"/>
<import addon="game.controller.snes"/>
</requires>
<extension point="kodi.gameclient" library_linux="bsnes2014_balanced_libretro.so">
<platforms>Super Nintendo Entertainment System</platforms>
<extensions>sfc|smc|bml|gb|gbc|st|bs</extensions>
<supports_vfs>true</supports_vfs>
<supports_standalone>false</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Nintendo - SNES / SFC (bsnes 2014 Balanced)</summary>
<description lang="en_GB">Emulator for Super Nintendo Entertainment System by Near[CR]Supported files: sfc|smc|bml|gb|gbc|st|bs[CR][CR]Game Addon Notes: [1] bsnes 2014 Balanced uses split ROMS for special chip games.|[*] Notable DSP1/DSP1B Games: Super Mario Kart, Pilotwings|[*] Notable DSP2 Games: Dungeon Master|[*] Notable DSP3 Games: SD Gundam GX|[*] Notable DSP4 Games: Top Gear 3000|[*] Notable Cx4 Games: Mega Man X2, Mega Man X3|[2] SGB Emulation will only work with command line.</description>
<license>GPLv3</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/bsnes2014_balanced_libretro.so.zip</source>
<news>Built from libretro buildbot commit 46566371 (2024-06-14)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<size>597504</size>
<path>linux_le_generic/game.libretro.bsnes2014_balanced_libretro_buildbot-1.2024.19888.zip</path>
</extension>
</addon>
<addon id="game.libretro.vice_xpet_libretro_buildbot" name="Commodore - PET (VICE xpet)" version="1.2024.19888" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
<import addon="game.controller.mouse"/>
<import addon="game.controller.default"/>
<import addon="game.controller.keyboard"/>
</requires>
<extension point="kodi.gameclient" library_linux="vice_xpet_libretro.so">
<platforms>PET</platforms>
<extensions>d64|d71|d80|d81|d82|g64|g41|x64|t64|tap|prg|p00|crt|bin|zip|gz|d6z|d7z|d8z|g6z|g4z|x6z|cmd|m3u|vfl|vsf|nib|nbz|d2m|d4m</extensions>
<supports_vfs>false</supports_vfs>
<supports_standalone>true</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Commodore - PET (VICE xpet)</summary>
<description lang="en_GB">Emulator for PET by VICE Team[CR]Supported files: d64|d71|d80|d81|d82|g64|g41|x64|t64|tap|prg|p00|crt|bin|zip|gz|d6z|d7z|d8z|g6z|g4z|x6z|cmd|m3u|vfl|vsf|nib|nbz|d2m|d4m</description>
<license>GPLv2</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/vice_xpet_libretro.so.zip</source>
<news>Built from libretro buildbot commit fabf4d46 (2024-06-14)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<size>1183606</size>
<path>linux_le_generic/game.libretro.vice_xpet_libretro_buildbot-1.2024.19888.zip</path>
</extension>
</addon>
<addon id="game.libretro.cap32_libretro_buildbot" name="Amstrad - CPC/GX4000 (Caprice32)" version="1.2024.19888" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
<import addon="game.controller.mouse"/>
<import addon="game.controller.amstrad.keyboard"/>
<import addon="game.controller.amstrad.joystick"/>
</requires>
<extension point="kodi.gameclient" library_linux="cap32_libretro.so">
<platforms>CPC/GX4000</platforms>
<extensions>dsk|sna|zip|tap|cdt|voc|cpr|m3u</extensions>
<supports_vfs>false</supports_vfs>
<supports_standalone>true</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Amstrad - CPC/GX4000 (Caprice32)</summary>
<description lang="en_GB">Emulator for CPC/GX4000 by Ulrich Doewich|dantoine[CR]Supported files: dsk|sna|zip|tap|cdt|voc|cpr|m3u</description>
<license>GPLv2</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/cap32_libretro.so.zip</source>
<news>Built from libretro buildbot commit ec6988be (2024-06-14)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<size>398037</size>
<path>linux_le_generic/game.libretro.cap32_libretro_buildbot-1.2024.19888.zip</path>
</extension>
</addon>
<addon id="game.libretro.parallel_n64_libretro_buildbot" name="Nintendo - Nintendo 64 (ParaLLEl N64)" version="1.2024.19888" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
<import addon="game.controller.n64"/>
</requires>
<extension point="kodi.gameclient" library_linux="parallel_n64_libretro.so">
<platforms>Nintendo 64</platforms>
<extensions>n64|v64|z64|bin|u1|ndd</extensions>
<supports_vfs>true</supports_vfs>
<supports_standalone>false</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Nintendo - Nintendo 64 (ParaLLEl N64)</summary>
<description lang="en_GB">Emulator for Nintendo 64 by Hacktarux|Mupen64Plus Team|TinyTiger|Libretro[CR]Supported files: n64|v64|z64|bin|u1|ndd[CR][CR]Game Addon Notes: (!) 64DD_IPL.bin (md5): 8d3d9f294b6e174bc7b1d2fd1c727530</description>
<license>GPLv2</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/parallel_n64_libretro.so.zip</source>
<news>Built from libretro buildbot commit eb7e2604 (2024-06-14)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<size>2751518</size>
<path>linux_le_generic/game.libretro.parallel_n64_libretro_buildbot-1.2024.19888.zip</path>
<broken>Not yet compatible</broken>
</extension>
</addon>
<addon id="game.libretro.vitaquake2-rogue_libretro_buildbot" name="Quake II - Ground Zero (vitaQuake 2 [Rogue])" version="1.2024.19888" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
</requires>
<extension point="kodi.gameclient" library_linux="vitaquake2-rogue_libretro.so">
<platforms>Quake II Game Engine</platforms>
<extensions>pak</extensions>
<supports_vfs>false</supports_vfs>
<supports_standalone>false</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Quake II - Ground Zero (vitaQuake 2 [Rogue])</summary>
<description lang="en_GB">Game for Quake II Game Engine by Rinnegatamante[CR]Supported files: pak</description>
<license>GPLv2</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/vitaquake2-rogue_libretro.so.zip</source>
<news>Built from libretro buildbot commit 790c5ddb (2024-06-14)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<size>965767</size>
<path>linux_le_generic/game.libretro.vitaquake2-rogue_libretro_buildbot-1.2024.19888.zip</path>
</extension>
</addon>
<addon id="game.libretro.squirreljme_libretro_buildbot" name="Java ME (SquirrelJME)" version="1.2024.19888" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
<import addon="game.controller.keyboard"/>
<import addon="game.controller.joystick.4button"/>
<import addon="game.controller.gravis.gamepad"/>
<import addon="game.controller.mouse"/>
<import addon="game.controller.joystick.2button"/>
</requires>
<extension point="kodi.gameclient" library_linux="squirreljme_libretro.so">
<platforms>Java ME</platforms>
<extensions>jar|sqc|jam|jad|kjx</extensions>
<supports_vfs>false</supports_vfs>
<supports_standalone>true</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Java ME (SquirrelJME)</summary>
<description lang="en_GB">Emulator for Java ME by Stephanie Gawroriski (Xer Shadow Tail)[CR]Supported files: jar|sqc|jam|jad|kjx</description>
<license>GPLv3</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/squirreljme_libretro.so.zip</source>
<news>Built from libretro buildbot commit eacc16a2 (2024-06-14)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<size>449957</size>
<path>linux_le_generic/game.libretro.squirreljme_libretro_buildbot-1.2024.19888.zip</path>
</extension>
</addon>
<addon id="game.libretro.x1_libretro_buildbot" name="Sharp X1 (X Millennium)" version="1.2024.19888" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
</requires>
<extension point="kodi.gameclient" library_linux="x1_libretro.so">
<platforms>Sharp X1</platforms>
<extensions>dx1|zip|2d|2hd|tfd|d88|88d|hdm|xdf|dup|tap|cmd</extensions>
<supports_vfs>false</supports_vfs>
<supports_standalone>false</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Sharp X1 (X Millennium)</summary>
<description lang="en_GB">Computer for Sharp X1 by yui[CR]Supported files: dx1|zip|2d|2hd|tfd|d88|88d|hdm|xdf|dup|tap|cmd[CR][CR]Game Addon Notes: (!) xmil/IPLROM.X1 (md5): eeeea1cd29c6e0e8b094790ae969bfa7|(!) xmil/IPLROM.X1T (md5): 851e4a5936f17d13f8c39a980cf00d77</description>
<license>BSD</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/x1_libretro.so.zip</source>
<news>Built from libretro buildbot commit a6c60d69 (2024-06-14)</news>
<assets/>
<size>177497</size>
<path>linux_le_generic/game.libretro.x1_libretro_buildbot-1.2024.19888.zip</path>
</extension>
</addon>
<addon id="game.libretro.vice_xscpu64_libretro_buildbot" name="Commodore - C64 SuperCPU (VICE xscpu64)" version="1.2024.19888" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
<import addon="game.controller.mouse"/>
<import addon="game.controller.default"/>
<import addon="game.controller.keyboard"/>
</requires>
<extension point="kodi.gameclient" library_linux="vice_xscpu64_libretro.so">
<platforms>C64 SuperCPU</platforms>
<extensions>d64|d71|d80|d81|d82|g64|g41|x64|t64|tap|prg|p00|crt|bin|zip|gz|d6z|d7z|d8z|g6z|g4z|x6z|cmd|m3u|vfl|vsf|nib|nbz|d2m|d4m</extensions>
<supports_vfs>false</supports_vfs>
<supports_standalone>true</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Commodore - C64 SuperCPU (VICE xscpu64)</summary>
<description lang="en_GB">Emulator for C64 SuperCPU by VICE Team[CR]Supported files: d64|d71|d80|d81|d82|g64|g41|x64|t64|tap|prg|p00|crt|bin|zip|gz|d6z|d7z|d8z|g6z|g4z|x6z|cmd|m3u|vfl|vsf|nib|nbz|d2m|d4m[CR][CR]Game Addon Notes: (!) JiffyDOS_C64.bin (md5): be09394f0576cf81fa8bacf634daf9a2|(!) JiffyDOS_1541-II.bin (md5): 1b1e985ea5325a1f46eb7fd9681707bf|(!) JiffyDOS_1571_repl310654.bin (md5): 41c6cc528e9515ffd0ed9b180f8467c0|(!) JiffyDOS_1581.bin (md5): 20b6885c6dc2d42c38754a365b043d71</description>
<license>GPLv2</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/vice_xscpu64_libretro.so.zip</source>
<news>Built from libretro buildbot commit 7e53448e (2024-06-14)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<size>1453759</size>
<path>linux_le_generic/game.libretro.vice_xscpu64_libretro_buildbot-1.2024.19888.zip</path>
</extension>
</addon>
<addon id="game.libretro.mednafen_psx_hw_libretro_buildbot" name="Sony - PlayStation (Beetle PSX HW)" version="1.2024.19888" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
<import addon="game.controller.konami.justifier.ps"/>
<import addon="game.controller.ps.dualshock"/>
<import addon="game.controller.ps.guncon.japan"/>
<import addon="game.controller.ps.gamepad"/>
<import addon="game.controller.konami.justifier.player2"/>
<import addon="game.controller.ps.mouse"/>
<import addon="game.controller.ps.dualanalog"/>
<import addon="game.controller.ps.guncon.western"/>
</requires>
<extension point="kodi.gameclient" library_linux="mednafen_psx_hw_libretro.so">
<platforms>PlayStation</platforms>
<extensions>cue|toc|m3u|ccd|exe|pbp|chd</extensions>
<supports_vfs>false</supports_vfs>
<supports_standalone>false</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Sony - PlayStation (Beetle PSX HW)</summary>
<description lang="en_GB">Emulator for PlayStation by Mednafen Team[CR]Supported files: cue|toc|m3u|ccd|exe|pbp|chd[CR][CR]Game Addon Notes: (!) scph5500.bin (md5): 8dd7d5296a650fac7319bce665a6a53c|(!) scph5501.bin (md5): 490f666e1afb15b7362b406ed1cea246|(!) scph5502.bin (md5): 32736f17079d0b2b7024407c39bd3050|(!) psxonpsp660.bin (md5): c53ca5908936d412331790f4426c6c33|(!) ps1_rom.bin (md5): 81bbe60ba7a3d1cea1d48c14cbcc647b[CR][CR]BIOS files are required for this core to function correctly</description>
<license>GPLv2</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/mednafen_psx_hw_libretro.so.zip</source>
<news>Built from libretro buildbot commit 814dcedb (2024-06-14)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<size>2538927</size>
<path>linux_le_generic/game.libretro.mednafen_psx_hw_libretro_buildbot-1.2024.19888.zip</path>
</extension>
</addon>
<addon id="game.libretro.dinothawr_libretro_buildbot" name="Dinothawr" version="1.2024.19888" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
<import addon="game.controller.default"/>
</requires>
<extension point="kodi.gameclient" library_linux="dinothawr_libretro.so">
<platforms>Dinothawr Game Engine</platforms>
<extensions>game</extensions>
<supports_vfs>false</supports_vfs>
<supports_standalone>true</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Dinothawr</summary>
<description lang="en_GB">Game for Dinothawr Game Engine by Themaister|Agnes Heyer[CR]Supported files: game[CR][CR]Game Addon Notes: (!) Dinothawr requires data ROM 'Dinothawr.zip'.|(!) Load Content 'dinothawr.game'.</description>
<license>Non-commercial</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/dinothawr_libretro.so.zip</source>
<news>Built from libretro buildbot commit 7056d909 (2024-06-14)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<size>473289</size>
<path>linux_le_generic/game.libretro.dinothawr_libretro_buildbot-1.2024.19888.zip</path>
</extension>
</addon>
<addon id="game.libretro.fbalpha2012_cps1_libretro_buildbot" name="Arcade (FB Alpha 2012 CPS-1)" version="1.2024.19888" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
<import addon="game.controller.default"/>
</requires>
<extension point="kodi.gameclient" library_linux="fbalpha2012_cps1_libretro.so">
<platforms>CP System I</platforms>
<extensions>zip</extensions>
<supports_vfs>false</supports_vfs>
<supports_standalone>false</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Arcade (FB Alpha 2012 CPS-1)</summary>
<description lang="en_GB">Emulator for CP System I by Team FB Alpha[CR]Supported files: zip[CR][CR]Game Addon Notes: (!) The BIOS files must be inside the ROM directory.</description>
<license>Non-commercial</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/fbalpha2012_cps1_libretro.so.zip</source>
<news>Built from libretro buildbot commit 2b3bda30 (2024-06-14)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<size>807131</size>
<path>linux_le_generic/game.libretro.fbalpha2012_cps1_libretro_buildbot-1.2024.19888.zip</path>
</extension>
</addon>
<addon id="game.libretro.vice_x64sc_libretro_buildbot" name="Commodore - C64 (VICE x64sc, accurate)" version="1.2024.19888" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
<import addon="game.controller.mouse"/>
<import addon="game.controller.default"/>
<import addon="game.controller.keyboard"/>
</requires>
<extension point="kodi.gameclient" library_linux="vice_x64sc_libretro.so">
<platforms>C64</platforms>
<extensions>d64|d71|d80|d81|d82|g64|g41|x64|t64|tap|prg|p00|crt|bin|zip|gz|d6z|d7z|d8z|g6z|g4z|x6z|cmd|m3u|vfl|vsf|nib|nbz|d2m|d4m</extensions>
<supports_vfs>false</supports_vfs>
<supports_standalone>true</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Commodore - C64 (VICE x64sc, accurate)</summary>
<description lang="en_GB">Emulator for C64 by VICE Team[CR]Supported files: d64|d71|d80|d81|d82|g64|g41|x64|t64|tap|prg|p00|crt|bin|zip|gz|d6z|d7z|d8z|g6z|g4z|x6z|cmd|m3u|vfl|vsf|nib|nbz|d2m|d4m[CR][CR]Game Addon Notes: (!) JiffyDOS_C64.bin (md5): be09394f0576cf81fa8bacf634daf9a2|(!) JiffyDOS_1541-II.bin (md5): 1b1e985ea5325a1f46eb7fd9681707bf|(!) JiffyDOS_1571_repl310654.bin (md5): 41c6cc528e9515ffd0ed9b180f8467c0|(!) JiffyDOS_1581.bin (md5): 20b6885c6dc2d42c38754a365b043d71</description>
<license>GPLv2</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/vice_x64sc_libretro.so.zip</source>
<news>Built from libretro buildbot commit 083af3ea (2024-06-14)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<size>1400819</size>
<path>linux_le_generic/game.libretro.vice_x64sc_libretro_buildbot-1.2024.19888.zip</path>
</extension>
</addon>
<addon id="game.libretro.kronos_libretro_buildbot" name="Sega - Saturn/ST-V (Kronos)" version="1.2024.19888" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
<import addon="game.controller.saturn.mission.sticks"/>
<import addon="game.controller.saturn"/>
<import addon="game.controller.saturn.3d"/>
<import addon="game.controller.saturn.virtua.gun"/>
<import addon="game.controller.saturn.arcade.racer"/>
<import addon="game.controller.saturn.mission.stick"/>
<import addon="game.controller.saturn.mouse"/>
<import addon="game.controller.saturn.twin.stick"/>
</requires>
<extension point="kodi.gameclient" library_linux="kronos_libretro.so">
<platforms>Saturn</platforms>
<extensions>ccd|chd|cue|iso|mds|zip|m3u</extensions>
<supports_vfs>false</supports_vfs>
<supports_standalone>false</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Sega - Saturn/ST-V (Kronos)</summary>
<description lang="en_GB">Emulator for Saturn by Guillaume Duhammel|Theo Berkau|Anders Montonen|devmiyax|FCare|barbudreadmon[CR]Supported files: ccd|chd|cue|iso|mds|zip|m3u[CR][CR]Game Addon Notes: (!) saturn_bios.bin (md5): af5828fdff51384f99b3c4926be27762|(!) stvbios.zip|(!) mpr-18811-mx.ic1 (md5): 255113ba943c92a54facd25a10fd780c|(!) mpr-19367-mx.ic1 (md5): 1cd19988d1d72a3e7caa0b73234c96b4[CR][CR]BIOS files are required for this core to function correctly</description>
<license>GPLv2</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/kronos_libretro.so.zip</source>
<news>Built from libretro buildbot commit 33875680 (2024-06-14)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<size>1865147</size>
<path>linux_le_generic/game.libretro.kronos_libretro_buildbot-1.2024.19888.zip</path>
<broken>Not yet compatible</broken>
</extension>
</addon>
<addon id="game.libretro.bluemsx_libretro_buildbot" name="MSX/SVI/ColecoVision/SG-1000 (blueMSX)" version="1.2024.19888" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
<import addon="game.controller.colecovision"/>
<import addon="game.controller.msx.keyboard"/>
<import addon="game.controller.msx.joystick"/>
</requires>
<extension point="kodi.gameclient" library_linux="bluemsx_libretro.so">
<platforms>MSX/SVI/ColecoVision/SG-1000</platforms>
<extensions>rom|ri|mx1|mx2|col|dsk|cas|sg|sc|sf|m3u</extensions>
<supports_vfs>false</supports_vfs>
<supports_standalone>false</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">MSX/SVI/ColecoVision/SG-1000 (blueMSX)</summary>
<description lang="en_GB">Emulator for MSX/SVI/ColecoVision/SG-1000 by Daniel Vik[CR]Supported files: rom|ri|mx1|mx2|col|dsk|cas|sg|sc|sf|m3u[CR][CR]Game Addon Notes: (!) The libretro port of blueMSX requires the BIOS files|from full standalone package inside the 'System\Machines' directory |and media database files into 'System\Databases' directory.|https://docs.libretro.com/library/bluemsx/#bios|(!) ColecoVision Gamepad Mapping is as follow:|Button 1 as Retropad A|Button 2 as Retropad B|Dial keys 1 to 8 as X, Y, R, L, R2, L2, R3, L3|Star as Select, Hash as Start|0 & 9 are on keyboard 1 & 2 for Player 1|0 & 9 are on keyboard 3 & 4 for Player 2.|(!) To play SpectraVideo cassettes type 'cload' then 'run'|or BLOAD ''CAS:'',R depending of game.[CR][CR]BIOS files are required for this core to function correctly</description>
<license>GPLv2</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/bluemsx_libretro.so.zip</source>
<news>Built from libretro buildbot commit ea16e76e (2024-06-14)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<size>771869</size>
<path>linux_le_generic/game.libretro.bluemsx_libretro_buildbot-1.2024.19888.zip</path>
</extension>
</addon>
<addon id="game.libretro.a5200_libretro_buildbot" name="Atari - 5200 (a5200)" version="1.2024.19888" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
</requires>
<extension point="kodi.gameclient" library_linux="a5200_libretro.so">
<platforms>Atari 5200</platforms>
<extensions>a52|bin</extensions>
<supports_vfs>true</supports_vfs>
<supports_standalone>false</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Atari - 5200 (a5200)</summary>
<description lang="en_GB">Emulator for Atari 5200 by Petr Stehlik|zx81|Alekmaul|wavemotion-dave[CR]Supported files: a52|bin[CR][CR]Game Addon Notes: (!) 5200.rom (md5): 281f20ea4320404ec820fb7ec0693b38</description>
<license>GPLv2</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/a5200_libretro.so.zip</source>
<news>Built from libretro buildbot commit 3b26f598 (2024-06-14)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<size>152222</size>
<path>linux_le_generic/game.libretro.a5200_libretro_buildbot-1.2024.19888.zip</path>
</extension>
</addon>
<addon id="game.libretro.gme_libretro_buildbot" name="Game Music Emu" version="1.2024.19888" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
</requires>
<extension point="kodi.gameclient" library_linux="gme_libretro.so">
<platforms>Music</platforms>
<extensions>ay|gbs|gym|hes|kss|nsf|nsfe|sap|spc|vgm|vgz|zip</extensions>
<supports_vfs>false</supports_vfs>
<supports_standalone>false</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Game Music Emu</summary>
<description lang="en_GB">Music player for Music by Blargg[CR]Supported files: ay|gbs|gym|hes|kss|nsf|nsfe|sap|spc|vgm|vgz|zip</description>
<license>GPLv3</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/gme_libretro.so.zip</source>
<news>Built from libretro buildbot commit e8abdb4b (2024-06-14)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<size>620749</size>
<path>linux_le_generic/game.libretro.gme_libretro_buildbot-1.2024.19888.zip</path>
</extension>
</addon>