libetonyek

    From The Document Foundation Wiki
    < DLP‎ | Libraries
    libetonyek
    Apple Keynote import library
    The Document Liberation Project
    Development statusBeta
    LicenseMPL 2.0
    MaintainersDavid Tardon (dtardon@redhat.com)
    Fridrich Strba (fridrich.strba@bluewin.ch)
    Repositorygit://gerrit.libreoffice.org/libetonyek
    Sourceshttp://dev-www.libreoffice.org/src/libetonyek

    Libetonyek is a library that parses the file format of Apple iWork documents (Keynote, Numbers and Pages).

    Getting the sources

    libetonyek sources are stored in git. To get them, you can use:

    git clone git://gerrit.libreoffice.org/libetonyek

    or you can browse the code online.

    Source tarballs of all released versions can be found here.

    Building the code

    You will need these tools and libraries to build libetonyek:

    boost
    glm
    gperf
    liblangtag
    librevenge
    libxml2
    mdds
    doxygen # optional for documentation building (can be disabled by passing --without-docs to configure)
    

    For Ubuntu you need to install:

    sudo apt install build-essential automake libcppunit-dev libtool libboost-dev libboost-filesystem-dev libglm-dev gperf liblangtag-dev librevenge-dev libxml2 libmdds-dev doxygen
    

    Once you have the source code and the dependencies, you can proceed to build. To do that, run the customary sequence of commands in the source code directory:

    ./autogen.sh ''# only needed for building from git''
    ./configure
    make
    make install

    Before installing, to avoid running with super user provileges, try to change user to current:

    sudo chown -R $USER /usr/local
    

    Contributing

    Once you have made a change that you are happy with, contribute it back, we'll be happy to integrate it!

    Submit it to gerrit. How to work with gerrit is described here.

    To push to review:

    git push ssh://gerrit.libreoffice.org:29418/libetonyek HEAD:refs/for/master