Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/keithdhedger/kkeditplugins
Optional plugins for KKEdit
https://github.com/keithdhedger/kkeditplugins
gtk2 gtk3 kkedit linux plugins
Last synced: 24 days ago
JSON representation
Optional plugins for KKEdit
- Host: GitHub
- URL: https://github.com/keithdhedger/kkeditplugins
- Owner: KeithDHedger
- Created: 2015-11-25T12:18:41.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2021-06-02T12:00:58.000Z (over 3 years ago)
- Last Synced: 2024-12-12T15:09:55.889Z (24 days ago)
- Topics: gtk2, gtk3, kkedit, linux, plugins
- Language: C++
- Size: 2.89 MB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
- Changelog: Changelog
Awesome Lists containing this project
README
To compile the plugins, first you need to install KKEdit ( obviously ).
To compile for gtk2 for the current user run:
./makeall
./makeall installThis will install ALL the plugins for the current user into ~/.KKEdit/plugins-gtk, to install individual plugins cd into the relevent folder and run:
make
make install.To compile for gtk2 for the users run:
./makeall GLOBAL=1
sudo ./makeall install GLOBAL=1This will install ALL the plugins for ALL users into PREFIX/share/KKEdit/plugins-gtk, to install individual plugins cd into the relevent folder and run:
make GLOBAL=1
sudo make install GLOBAL=1To compile for gtk3 for the current user run:
./makeall GTKVERSION=3
./makeall install GTKVERSION=3This will install ALL the plugins for the current user into ~/.KKEdit3/plugins-gtk, to install individual plugins cd into the relevent folder and run:
make GTKVERSION=3
make install GTKVERSION=3.To compile for gtk3 for the users Run:
./makeall GLOBAL=1 GTKVERSION=3
sudo ./makeall install GLOBAL=1 GTKVERSION=3This will install ALL the plugins ALL users into PREFIX/share/KKEdit3/plugins-gtk, to install individual plugins cd into the relevent folder and run:
make GLOBAL=1 GTKVERSION=3
sudo make install GLOBAL=1 GTKVERSION=3PREFIX defaults to /usr, you can also used a staged install by setting DESTDIR as normal eg:
make GLOBAL=1 PREFIX=/opt install DESTDIR=/tmp/xxxCertain plugins need extra dependencies eg the terminal pane needs vte for gtk2 and vte-2.91 for gtk3, you should consult your distros package manager and/or forums on how to install dependencies.