Search tool for EPUB e-books
Go to file
tastytea 2ab4705475
Make --regexp required, show help if it is not given.
2021-05-24 05:45:42 +02:00
cmake std::filesystem compatibility for older GCC. 2021-05-20 10:37:45 +02:00
man Update man page. 2021-05-23 16:52:27 +02:00
src Make --regexp required, show help if it is not given. 2021-05-24 05:45:42 +02:00
tests Implement zip::read_file() – Read file in archive; add test. 2021-05-23 08:56:58 +02:00
translations Update german translation. 2021-05-23 09:02:23 +02:00
.clang-format Add .clang-tify and .clang-format. 2021-05-21 03:24:28 +02:00
.clang-tidy Add .clang-tify and .clang-format. 2021-05-21 03:24:28 +02:00
.drone.yml Install locales in CI. 2021-05-23 09:19:51 +02:00
.editorconfig Initial commit. 2021-05-20 04:34:06 +02:00
.gitignore (Re-)generate .pot file by default, update readme. 2021-05-20 07:58:42 +02:00
AUTHORS Initial commit. 2021-05-20 04:34:06 +02:00
CMakeLists.txt Specify minimum versions of dependencies where known. 2021-05-23 09:30:33 +02:00
CODE_OF_CONDUCT.adoc Initial commit. 2021-05-20 04:34:06 +02:00
CONTRIBUTING.adoc Add translator's information. 2021-05-20 08:05:34 +02:00
CREDITS Update credits. 2021-05-21 03:51:42 +02:00
LICENSE Initial commit. 2021-05-20 04:34:06 +02:00
README.adoc Add basic man page. 2021-05-23 06:36:33 +02:00

README.adoc

epubgrep

epubgrep is a search tool for EPUB ebooks.

Table of Contents

Usage

See manpage.

Install

Packaging status

From source

Dependencies

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)
# cd tests && ctest
CMake options:
  • -DCMAKE_BUILD_TYPE=Debug for a debug build.

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

  • -DGENERATE_POT=NO to not (re-)generate the .pot file.

  • -DXGETTEXT_CMD=String The program to use instead of xgettext.