aboutsummaryrefslogtreecommitdiff
path: root/community/godot/files
diff options
context:
space:
mode:
authorCem Keylan <cem@ckyln.com>2022-09-26 19:50:36 +0200
committerCem Keylan <cem@ckyln.com>2022-09-26 19:50:36 +0200
commiteaad06abd1d9b65ed690fd13a9af9c4d3c611c31 (patch)
tree10d95128ad7445f5bbc00dfc8c55f0b3f8cd4dcd /community/godot/files
parent106f7e61d34d206c9f253e7669be82366a11ed74 (diff)
downloadrepository-eaad06abd1d9b65ed690fd13a9af9c4d3c611c31.tar.gz
godot: add new package at 3.5
Diffstat (limited to 'community/godot/files')
-rw-r--r--community/godot/files/godot.desktop9
-rwxr-xr-xcommunity/godot/files/pythonpath6
2 files changed, 15 insertions, 0 deletions
diff --git a/community/godot/files/godot.desktop b/community/godot/files/godot.desktop
new file mode 100644
index 00000000..e63874e9
--- /dev/null
+++ b/community/godot/files/godot.desktop
@@ -0,0 +1,9 @@
+[Desktop Entry]
+Name=Godot
+Comment=Application for making games
+Exec=/usr/bin/godot %U
+Icon=godot
+Terminal=false
+Type=Application
+Categories=Utility;Game;
+
diff --git a/community/godot/files/pythonpath b/community/godot/files/pythonpath
new file mode 100755
index 00000000..f3718ca7
--- /dev/null
+++ b/community/godot/files/pythonpath
@@ -0,0 +1,6 @@
+#!/usr/bin/python3
+import os
+import sys
+
+print("%s/scons/dist/usr/lib/python%d.%d/site-packages:%s"
+ % (os.getcwd(), sys.version_info.major, sys.version_info.minor, ':'.join(sys.path)))