This repository has been archived by the owner on Oct 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
QCheckers is a Qt-based checkers board game. Log: add app QCheckers
- Loading branch information
Showing
3 changed files
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
package: | ||
id: io.github.qcheckers | ||
name: QCheckers | ||
version: 0.9.1.0 | ||
kind: app | ||
description: | | ||
QCheckers (formely known as KCheckers) is a Qt-based checkers board game. It can play english draughts and russian draughts.. | ||
runtime: | ||
id: org.deepin.Runtime | ||
version: 23.0.0 | ||
|
||
source: | ||
kind: git | ||
url: "https://github.com/portnov/qcheckers.git" | ||
commit: 8b8a3e64520e8e074e6035e3a12ff3f7075c7463 | ||
patch: | ||
- patches/fix-icon.patch | ||
- patches/fix-install.patch | ||
|
||
build: | ||
kind: qmake |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
diff --git a/qcheckers.desktop b/qcheckers.desktop | ||
index 925d31e..e144ef4 100644 | ||
--- a/qcheckers.desktop | ||
+++ b/qcheckers.desktop | ||
@@ -5,4 +5,4 @@ Name=QCheckers | ||
GenericName=Checkers board game | ||
Type=Application | ||
Exec=qcheckers | ||
-Icon=qcheckers.svg | ||
+Icon=qcheckers |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
diff --git a/src/src.pro b/src/src.pro | ||
index df72aae..8858f5d 100644 | ||
--- a/src/src.pro | ||
+++ b/src/src.pro | ||
@@ -47,6 +47,6 @@ desktop.files += ../qcheckers.desktop | ||
INSTALLS += desktop | ||
|
||
# Install icon | ||
-icon.path += $$PREFIX/share/icons/hicolor/scalable/apps | ||
+icon.path += $$PREFIX/share/icons/hicolor/scalable/apps | ||
icon.files += ../qcheckers.svg | ||
INSTALLS += icon |