3.9.26
All checks were successful
Build / Build project (push) Successful in 3m20s

This commit is contained in:
Alexander Zhirov 2025-05-03 05:13:22 +03:00
parent df133e0f78
commit e6f32e163c
Signed by: alexander
GPG key ID: C8D8BE544A27C511
6 changed files with 75 additions and 1 deletions

12
files/dexed.desktop Normal file
View file

@ -0,0 +1,12 @@
[Desktop Entry]
Version=1.0
Name=Dexed
Terminal=false
Icon=dexed
Type=Application
Categories=Application;IDE;Development;
Exec=dexed %f
GenericName=dexed
Comment=D Extended EDitor
StartupNotify=true
Keywords=editor;Dlang;IDE;dmd;dub;

14
files/soname.patch Normal file
View file

@ -0,0 +1,14 @@
--- dexed-d/dub.json 2023-09-18 09:41:22.000000000 +0300
+++ dexed-d/dub.json 2025-03-30 20:22:14.709180808 +0300
@@ -3,6 +3,11 @@
"targetType" : "dynamicLibrary",
"targetPath" : "../bin",
"targetName" : "dexed-d",
+ "lflags": ["-soname=libdexed-d.so.0"],
+ "postBuildCommands": [
+ "mv ../bin/libdexed-d.so ../bin/libdexed-d.so.0",
+ "ln -sf libdexed-d.so.0 ../bin/libdexed-d.so"
+ ],
"dependencies" : {
"libdparse" : {
"path" : "../etc/libdparse"