First commit

This commit is contained in:
2025-11-18 13:48:52 -07:00
parent b3bfba7459
commit 564e8ced51
7 changed files with 84 additions and 0 deletions

5
debian/changelog vendored Normal file
View File

@@ -0,0 +1,5 @@
xemu (0.8.113-1rakuos4) unstable; urgency=medium
* Initial packaging.
-- Joshua Webb <tohur@tohur.xyz> Thu, 06 Nov 2025 22:40:00 -0700

40
debian/control vendored Normal file
View File

@@ -0,0 +1,40 @@
Source: xemu
Section: games
Priority: optional
Maintainer: Joshua Webb <tohur@tohur.xyz>
Build-Depends: debhelper (>= 11),
debhelper-compat (= 11),
cmake,
git,
python3:any,
python3-pip,
python3-tomli,
python3-yaml,
python3-venv,
ninja-build,
libgtk-3-dev,
libepoxy-dev,
libpixman-1-dev,
libsdl2-dev,
libsamplerate0-dev,
zlib1g-dev,
libssl-dev,
libpcap-dev,
libslirp-dev,
libvulkan-dev,
libcurl4-gnutls-dev,
Standards-Version: 3.9.8
Homepage: https://xemu.app
XS-Debian-Vcs-Browser: https://github.com/mborgerson/xemu
XS-Debian-Vcs-Git: https://github.com/mborgerson/xemu.git
Vcs-Browser: https://github.com/mborgerson/xemu
Vcs-Git: https://github.com/mborgerson/xemu.git
Package: xemu
Architecture: amd64
Multi-Arch: foreign
Depends: ${shlibs:Depends}, ${misc:Depends}
Provides: xemu
Description: Original Xbox emulator
An open-source, cross-platform application that emulates the hardware of the
original Xbox game console.

10
debian/copyright vendored Normal file
View File

@@ -0,0 +1,10 @@
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: RakuOS Branding
Upstream-Contact: Joshua Webb <contact@rakuos.org>
Source: https://rakuos.org/
Files: *
Copyright: 2025 Joshua Webb
License: GPL-3+
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License version 3 or later.

4
debian/install vendored Normal file
View File

@@ -0,0 +1,4 @@
squashfs-root/usr/bin/* usr/games/
squashfs-root/usr/share/applications/* usr/share/applications/
squashfs-root/usr/share/icons/* usr/share/icons/
squashfs-root/usr/share/metainfo/* /usr/share/metainfo/

6
debian/install.bk vendored Normal file
View File

@@ -0,0 +1,6 @@
usr/share/plymouth/themes/rakuos/* usr/share/plymouth/themes/rakuos/
usr/share/sddm/themes/rakuos/* usr/share/sddm/themes/rakuos/
usr/share/wallpapers/RakuOS/* usr/share/wallpapers/RakuOS/
usr/share/icons/rakuos/* usr/share/icons/rakuos/
usr/share/calamares/branding/rakuos/* usr/share/calamares/branding/rakuos/
usr/share/grub/themes/rakuos/* usr/share/grub/themes/rakuos/

18
debian/rules vendored Executable file
View File

@@ -0,0 +1,18 @@
#!/usr/bin/make -f
# Simple dh (debhelper) build rules file
%:
dh $@
# # Prevent dh_strip from running on this package
# override_dh_strip:
# @echo "Skipping dh_strip for Ryujinx (bundled libs)"
#
# override_dh_shlibdeps:
# @echo "Skipping dh_shlibdeps for Ryujinx (bundled libs)"
override_dh_fixperms:
dh_fixperms
chmod 755 debian/xemu/usr/games/xemu
chmod u+x debian/xemu/usr/games/xemu
chmod 755 debian/xemu/usr/share/applications/xemu.desktop
chmod u+x debian/xemu/usr/share/applications/xemu.desktop

1
debian/source/format vendored Normal file
View File

@@ -0,0 +1 @@
3.0 (native)