Search tool for EPUB e-books
Go to file
tastytea 678b506a8c
Initial commit.
- Add skeleton
- Add command-line parsing
2021-05-20 04:34:06 +02:00
cmake Initial commit. 2021-05-20 04:34:06 +02:00
src Initial commit. 2021-05-20 04:34:06 +02:00
tests Initial commit. 2021-05-20 04:34:06 +02:00
.drone.yml Initial commit. 2021-05-20 04:34:06 +02:00
.editorconfig Initial commit. 2021-05-20 04:34:06 +02:00
.gitignore Initial commit. 2021-05-20 04:34:06 +02:00
AUTHORS Initial commit. 2021-05-20 04:34:06 +02:00
CMakeLists.txt Initial commit. 2021-05-20 04:34:06 +02:00
CODE_OF_CONDUCT.adoc Initial commit. 2021-05-20 04:34:06 +02:00
CONTRIBUTING.adoc Initial commit. 2021-05-20 04:34:06 +02:00
CREDITS Initial commit. 2021-05-20 04:34:06 +02:00
LICENSE Initial commit. 2021-05-20 04:34:06 +02:00
README.adoc Initial commit. 2021-05-20 04:34:06 +02:00

README.adoc

epubgrep

epubgrep is a search tool for EPUB ebooks.

Table of Contents

Install

Packaging status

From source

Dependencies

  • Tested OS: Linux

  • C++ compiler with C++17 support (tested: GCC 7/10, clang 6/11)

  • CMake (at least: 3.12)

  • Optional

    • Tests: Catch (tested: 2.5 / 1.2)

Get sourcecode

Development version
git clone https://schlomp.space/tastytea/epubgrep.git

Compile

mkdir -p build && cd build
cmake ..
cmake --build . -- --jobs=$(nproc --ignore=1)
CMake options:
  • -DCMAKE_BUILD_TYPE=Debug for a debug build.

  • -DWITH_TESTS=YES if you want to compile the tests.