Hello overkill
Q:
Which Desktop - xfce,kde,etc.?
I have it running in xfce (but 32 bit) so my files list wont help you.
However, if i understand correctly you already have the files needed to make
Electrum run and now you want to make a "all inclusive" module, right?
After me please:
Extract the Electrum-2.9.3.tar.gz to get the Electrum-2.9.3 Folder > rename
this folder to electrum
Create some folders in /tmp
/tmp/
work/opt
/tmp
/2
copy the extracted (and renamed) electrum folder into /tmp/work/opt
- it would be /tmp/work/opt/electrum -
Dependencies:
Copy all the dependencies you need to make the program run into the
/tmp/2 folder.
- you will find the *.txz packages in /tmp/usm if you got them via USM.
Let's put them together - open a terminal:
Code: Select all
guest@porteus:~$ su
Password:
root@porteus:/home/guest# for pkgs in /tmp/2/*.txz; do installpkg -root /tmp/work $pkgs; done
Make it executeable:
Code: Select all
root@porteus:/home/guest# chmod +x /tmp/work/opt/electrum/electrum
Now we want a start menu entry:
create a electrum.desktop (txt) file with following content:
Code: Select all
[Desktop Entry]
Name=Electrum
GenericName=Electrum
Exec=/opt/electrum/electrum
Icon=/opt/electrum/icons/electrum.png
Terminal=false
Type=Application
Categories=System;Utility;
and copy it into /tmp/work/usr/share/applications
if this path doesn't exist, create it.
last step, make the module:
Code: Select all
root@porteus:/home/guest# dir2xzm /tmp/work /tmp/Electrum-2.9.3.xzm
done - your module is in /tmp