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.
Emulator for Soyuz-Neon PK-11/16 Log: add software name--neonbtl-qt
- Loading branch information
Showing
2 changed files
with
57 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,28 @@ | ||
package: | ||
id: io.github.neonbtl-qt | ||
name: neonbtl-qt | ||
version: 0.38.0 | ||
kind: app | ||
description: | | ||
Emulator for Soyuz-Neon PK-11/16 | ||
runtime: | ||
id: org.deepin.Runtime | ||
version: 23.0.0 | ||
|
||
source: | ||
kind: git | ||
url: https://github.com/nzeemin/neonbtl-qt.git | ||
commit: 3f0349151e6600475388afdcad7d3c6b13fae10a | ||
patch: patches/0001-install.patch | ||
|
||
build: | ||
kind: qmake | ||
manual: | ||
configure: | | ||
cd emulator | ||
qmake -makefile ${conf_args} ${extra_args} | ||
build: | | ||
make ${jobs} | ||
install: | | ||
make ${jobs} DESTDIR=${dest_dir} install |
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,29 @@ | ||
From fd89d3f74c4eb6248a30874a4a5da24997b45346 Mon Sep 17 00:00:00 2001 | ||
From: wjyrich <1071633242@qq.com> | ||
Date: Thu, 25 Apr 2024 18:03:48 +0800 | ||
Subject: [PATCH] install | ||
|
||
--- | ||
emulator/QtNeonBtl.pro | 9 +++++++++ | ||
1 file changed, 9 insertions(+) | ||
|
||
diff --git a/emulator/QtNeonBtl.pro b/emulator/QtNeonBtl.pro | ||
index f310df7..9c644a7 100644 | ||
--- a/emulator/QtNeonBtl.pro | ||
+++ b/emulator/QtNeonBtl.pro | ||
@@ -50,3 +50,12 @@ DEFINES -= UNICODE _UNICODE | ||
TRANSLATIONS = neonbtl_en.ts neonbtl_ru.ts | ||
CONFIG += c++11 | ||
QMAKE_CXXFLAGS += -std=c++11 | ||
+ | ||
+ | ||
+target.path =$$PREFIX/bin | ||
+desktop.files =../linux/qtneonbtl.desktop | ||
+desktop.path = $$PREFIX/share/applications/ | ||
+icons.path = $$PREFIX/share/icons | ||
+icons.files = ../linux/qtneonbtl.png | ||
+ | ||
+INSTALLS += target desktop icons | ||
-- | ||
2.33.1 | ||
|