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.
QCAD Community Edition 是一个计算机辅助设计应用 (CAD)。 Log: add app qcad
- Loading branch information
1 parent
ceda2d7
commit cb3b5bc
Showing
4 changed files
with
76 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,22 @@ | ||
package: | ||
id: io.github.qcad | ||
name: qcad | ||
version: 3.29.6.4 | ||
kind: app | ||
description: | | ||
QCAD Community Edition 是一个计算机辅助设计应用 (CAD)。. | ||
runtime: | ||
id: org.deepin.Runtime | ||
version: 23.0.0 | ||
|
||
source: | ||
kind: git | ||
url: "https://github.com/qcad/qcad.git" | ||
commit: 38a3944de996268087dc0c51f007109c0a7cb2b6 | ||
patch: | ||
- patches/fix-3rdparty.patch | ||
- patches/fix-install.patch | ||
- patches/fix-desktop.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,17 @@ | ||
diff --git a/src/3rdparty/3rdparty.pro b/src/3rdparty/3rdparty.pro | ||
index 55e5271680..3205be912f 100644 | ||
--- a/src/3rdparty/3rdparty.pro | ||
+++ b/src/3rdparty/3rdparty.pro | ||
@@ -19,8 +19,10 @@ else { | ||
} | ||
|
||
!r_mobile { | ||
- exists(qt-labs-qtscriptgenerator-$${QT_VERSION}) { | ||
- SUBDIRS += qt-labs-qtscriptgenerator-$${QT_VERSION} | ||
+# exists(qt-labs-qtscriptgenerator-$${QT_VERSION}) { | ||
+# SUBDIRS += qt-labs-qtscriptgenerator-$${QT_VERSION} | ||
+ exists(qt-labs-qtscriptgenerator-5.15.8) { | ||
+ SUBDIRS += qt-labs-qtscriptgenerator-5.15.8 | ||
} | ||
else { | ||
lessThan(QT_MAJOR_VERSION, 6) { |
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,13 @@ | ||
diff --git a/qcad.desktop b/qcad.desktop | ||
index 93c5e97201..2d0e6bf32a 100644 | ||
--- a/qcad.desktop | ||
+++ b/qcad.desktop | ||
@@ -48,7 +48,7 @@ Comment[sv]=2D CAD-system | ||
Comment[sl]=Sistem 2D CAD | ||
Comment[uk]=2D САПР | ||
Comment[tr]=2D CAD Sistemi | ||
-Exec=qcad %F | ||
+Exec=qcad-bin %F | ||
X-MultipleArgs=true | ||
Icon=qcad_icon | ||
Terminal=false |
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,24 @@ | ||
diff --git a/qcad.pro b/qcad.pro | ||
index 74f874ef9d..c7455b3a16 100644 | ||
--- a/qcad.pro | ||
+++ b/qcad.pro | ||
@@ -26,3 +26,18 @@ else { | ||
dummy { | ||
SUBDIRS += scripts | ||
} | ||
+pluginsfile.files = $$PWD/plugins/* | ||
+pluginsfile.path = $$PREFIX/bin/plugins | ||
+INSTALLS += pluginsfile | ||
+ | ||
+releasefile.files = $$PWD/release/* | ||
+releasefile.path = $$PREFIX/bin | ||
+INSTALLS += releasefile | ||
+ | ||
+desktopfile.files = $$PWD/qcad.desktop | ||
+desktopfile.path = $$PREFIX/share/applications | ||
+INSTALLS += desktopfile | ||
+ | ||
+iconfile.files = $$PWD/scripts/qcad_icon.svg | ||
+iconfile.path = $$PREFIX/share/icons | ||
+INSTALLS += iconfile | ||
\ No newline at end of file |