Document Converter
This project provides an example using libreoffice to converting documents.
The source code of the project is provided under the license, that allows it to be used in third-party applications.
The contributor agreement documents the rights granted by contributors to the Open Mobile Platform.
Code of conduct is a current set of rules of the Open Mobile Platform which informs you how we expect the members of the community will interact while contributing and communicating.
For information about contributors see AUTHORS.
Project Structure
The project has a common structure of an application based on C++ and QML for Aurora OS.
- ru.auroraos.DocumentConverter.pro file describes the subdirs project that contains two two subprojects where the first is responsible for building the libreoffice, and the second describes the structure of the application for the qmake build system.
- icons directory contains application icons for different screen resolutions.
-
qml directory contains the QML source code and the UI resources.
- cover directory contains the application cover implementations.
- icons directory contains the custom UI icons.
- pages directory contains the application pages.
- DocumentConverter.qml file provides the application window implementation.
- rpm directory contains the rpm-package build settings. ru.auroraos.DocumentConverter.spec file is used by rpmbuild tool.
-
src directory contains the C++ source code.
- main.cpp file is the application entry point.
- translations directory contains the UI translation files.
- ru.auroraos.DocumentConverter.desktop file defines the display and parameters for launching the application.
- libreoffice directory contains source code LibreOffice (git submodule)
- tarballs directory of dependencies in the form of archives necessary for the build LibreOffice.
Building
- Make shure that you have 32 GB of RAM and SDK with docker( note: don't use VB for building this example).
- Open a terminal or command prompt.
- Navigate to the directory that contains your Git repository.
- Execute the command "git lfs pull" to download any files tracked by LFS.
- Execute the command "git submodule update --init" to update and initialize any submodules in the repository.
- Execute the command "mb2 -t AuroraOS-4.0.2.209-base-armv7hl prepare" to apply the patches needed for the build.
- Execute the command "mb2 -t AuroraOS-4.0.2.209-base-armv7hl build" to start building the package.
Note: To execute the steps "git lfs pull" and "git submodule update --init", you will need to have Git Large File Storage (LFS) and Git Submodule plugins installed on your system.
Package signature
You can read about package signing in package_signing