-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path1556-Provide-a-basic-.desktop-file-for-Linux.patch
More file actions
52 lines (47 loc) · 1.75 KB
/
Copy path1556-Provide-a-basic-.desktop-file-for-Linux.patch
File metadata and controls
52 lines (47 loc) · 1.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: Tim Schumacher <timschumi@gmx.de>
Date: Thu, 20 Feb 2020 02:27:45 +0100
Subject: [PATCH] 1556: Provide a basic .desktop file for Linux
---
Ghidra/RuntimeScripts/build.gradle | 1 +
Ghidra/RuntimeScripts/certification.manifest | 1 +
Ghidra/RuntimeScripts/ghidra.desktop | 7 +++++++
3 files changed, 9 insertions(+)
create mode 100755 Ghidra/RuntimeScripts/ghidra.desktop
diff --git a/Ghidra/RuntimeScripts/build.gradle b/Ghidra/RuntimeScripts/build.gradle
index ac1522ecd7..47f4a97522 100644
--- a/Ghidra/RuntimeScripts/build.gradle
+++ b/Ghidra/RuntimeScripts/build.gradle
@@ -29,6 +29,7 @@ rootProject.assembleDistribution {
from (this.project.file("ghidraRun"))
from (this.project.file("ghidraRun.bat"))
+ from (this.project.file("ghidra.desktop"))
from (rootProject.projectDir) {
include "gradlew"
diff --git a/Ghidra/RuntimeScripts/certification.manifest b/Ghidra/RuntimeScripts/certification.manifest
index f604f6bb44..b802ef7c64 100644
--- a/Ghidra/RuntimeScripts/certification.manifest
+++ b/Ghidra/RuntimeScripts/certification.manifest
@@ -3,6 +3,7 @@
##MODULE IP: Copyright Distribution Permitted
##MODULE IP: Public Domain
ghidraRun||GHIDRA||||END|
+ghidra.desktop||GHIDRA||||END|
server/ghidraSvr||GHIDRA||||END|
server/jaas.conf||GHIDRA||||END|
server/server.conf||GHIDRA||||END|
diff --git a/Ghidra/RuntimeScripts/ghidra.desktop b/Ghidra/RuntimeScripts/ghidra.desktop
new file mode 100755
index 0000000000..0835edb982
--- /dev/null
+++ b/Ghidra/RuntimeScripts/ghidra.desktop
@@ -0,0 +1,7 @@
+[Desktop Entry]
+Type=Application
+Name=Ghidra
+Comment=The Ghidra Software Reverse Engineering (SRE) Suite
+Exec=ghidraRun
+Icon=ghidra
+Terminal=false
--
2.45.1