File: README.waf

package info (click to toggle)
geany-plugins 1.24%2Bdfsg-5
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 17,532 kB
  • ctags: 10,926
  • sloc: ansic: 89,639; sh: 11,434; python: 1,365; makefile: 1,302
file content (36 lines) | stat: -rw-r--r-- 912 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
You can use Waf (http://code.google.com/p/waf/) to build
the Geany plugins in this repository.

Usage:
./waf configure
./waf build
./waf install

This will configure, build and install most of the available plugins.
To exclude some plugins, ./waf configure accepts the option "--enable-plugins"
which takes a comma-separated list of plugins to compile, e.g.

./waf configure --enable-plugins=geanysendmail,spellcheck

Similarly you can also disable certain plugins from the list with

./waf configure --skip-plugins=geanydoc,geanyvc

To update the language catalogues of plugins with enabled I18n support, run:

./waf updatepo


For more configure options, run
./waf configure --help


For convenience, running './waf configure' will create a simple Makefile
as a wrapper for './waf [options]'.
Currently, the following make targets are available:

make all
make install
make uninstall
make update-po
make clean