Make plugin work together with API version 68 of Geany (arround svn r 2696)
[geanylatex.git] / INSTALL
blob3feb52a9a3b81ad13546f2877865a099f7a9051f
1 These installation instructions are written for a Linux system.
3 At the time of this writing, building the plugin requires a recent SVN checkout
4 of the Geany sources (r2350).
6 In order to build the plugin, the makefile needs to know where it can find
7 the Geany header files - you can do this by calling configure with with-geany-src
8 option for instance:
10  % configure
11  % make
12  % make install
14 The "make install" command copies geanylatex.so to your personal ~/.geany/plugins/
15 directory, so you don't need to be root to install. ( If you are logged in as
16 root when you install, it will only put the files in /root/.geany/plugins/
17 which might not be what you expected! )
19 If you actually do want everyone on the system to be able to access to the
20 same copy of the plugin, you can manually copy the plugin to the system-wide
21 plugins directory.
22 ( That would probably be /usr/local/lib/geany/ or maybe /usr/lib/geany/ )
24 There is no "make uninstall" target, so if you want to remove the plugin,
25 just delete the "geanylatex.so" from your plugins directory. By now, no
26 other files were created directly by the plugin.