medit/INSTALL

25 lines
687 B
Plaintext
Raw Normal View History

2011-01-05 23:35:55 -08:00
medit uses autotools for the build. Quick build with default options:
2010-03-19 23:01:01 -07:00
tar xjf medit-x.x.x.tar.bz2
cd medit-x.x.x
2011-01-05 23:35:55 -08:00
./configure
2010-03-19 23:01:01 -07:00
make
make install
2011-01-05 23:35:55 -08:00
This will configure, build, and install medit to /usr/local.
2010-03-19 23:01:01 -07:00
2011-01-05 23:35:55 -08:00
If you checked out a copy of mercurial repository, then do the following to build:
2010-03-19 23:01:01 -07:00
2011-01-05 23:35:55 -08:00
./autogen.sh
./configure --enable-dev-mode
make
make install
2010-03-19 23:01:01 -07:00
2011-01-05 23:35:55 -08:00
You must have docbook, xsltproc, txt2tags to build medit from mercurial. Other
tools may be required and configure may not check for them, please report those
to the author.
To build a python module which could be used in other programs, use
--enable-moo-module --enable-shared --disable-static configure flags in addition
to above.