41ffa10123
Fixes #12.
716 B
716 B
libebml
a C++ libary to parse EBML files
Specifications may be rendered at http://matroska-org.github.io/libebml/
Building and installing
Building a released version
libebml is based on autoconf and automake and requires only a C++ compiler. This means that the normal build process consists of the usual three steps:
- Configuration:
./configure
- Building:
make
- Installation (run this as root):
make install
Building from git
If you're building from git you must have the GNU autotools
(autoconf
, automake
, libtoolize
) installed. Then run the
following two commands:
libtoolize
autoreconf -vi
Afterwards continue with the steps listed for building a released version.