last ever test

This commit is contained in:
xgui4
2026-04-18 20:48:22 -04:00
parent df0927a94f
commit 8afb898328
4 changed files with 23 additions and 4 deletions

View File

@@ -44,6 +44,7 @@ build() {
package() {
cd "$pkgname"
python -m installer --destdir="$pkgdir" dist/*.whl
install -Dm644 "pkg/github.io.xgui4.lce_qt_launcher.desktop" "$pkgdir/usr/share/applications/github.io.xgui4.lce_qt_launcher.desktop.desktop"
install -Dm644 license.md -t "$pkgdir/usr/share/licenses/$pkgname/"
install -Dm644 readme.md code-of-conduct.md -t "$pkgdir/usr/share/doc/$pkgname/"
}

View File

@@ -1,6 +1,6 @@
# Maintainer: Xgui4
pkgname=lce-qt-launcher-pre-alpha
pkgver=r129.a9230f3
pkgver=r130.df0927a
pkgrel=1
pkgdesc="A custom Minecraft LCE Launcher written in Python and Qt with GNU/Linux support in mind."
arch=('any')
@@ -44,6 +44,7 @@ build() {
package() {
cd "$pkgname"
python -m installer --destdir="$pkgdir" dist/*.whl
install -Dm644 "pkg/github.io.xgui4.lce_qt_launcher.desktop" "$pkgdir/usr/share/applications/github.io.xgui4.lce_qt_launcher.desktop.desktop"
install -Dm644 license.md -t "$pkgdir/usr/share/licenses/$pkgname/"
install -Dm644 readme.md code-of-conduct.md -t "$pkgdir/usr/share/doc/$pkgname/"
}

View File

@@ -0,0 +1,9 @@
[Desktop Entry]
Type=Application
Version=1
Name=LCE QT Launcher
Comment=This is a custom Minecraft LCE Launcher written in Python and Qt with Freedom and with GNU/Linux support in mind.
Exec=lce-qt-launcher
Icon=lce-qt-launcher
Categories=Python;Minecraft;Game;Utils;Qt

View File

@@ -22,13 +22,21 @@ dependencies = [
]
[tool.hatch.build.targets.wheel]
packages = ["src"]
packages = ["src/lce_qt_launcher"]
[tool.hatch.build.targets.wheel.sources]
"src" = "lce_launcher_core"
"src/lce_qt_launcher" = "lce_qt_launcher"
"src/main.py" = "main.py"
"src/ui_form.py" = "ui_form.py"
"src/ui_instance.py" = "ui_instance.py"
"src/ui_system_info.py" = "ui_system_info.py"
"src/ui_settingDialog.py" = "ui_settingDialog.py"
"src/ui_about.py" = "ui_about.py"
"src/res_rc.py" = "res_rc.py"
[project.scripts]
lce-qt-launcher = "lce_launcher_core.main:main"
lce-qt-launcher = "main:main"
[project.urls]
Repository = "https://github.com/xgui4/LCE-QT-Launcher"