Document viewer
Find a file
Sebastian Ramacher 0e3efe0504 Fix compiler warnings
Signed-off-by: Sebastian Ramacher <sebastian+dev@ramacher.at>
2013-02-23 17:32:30 +01:00
po Import new translations from transifex 2013-01-22 21:42:10 +01:00
tests Build tests with magic if WITH_MAGIC != 0 2013-02-22 15:58:13 +01:00
.gitignore
AUTHORS Add Ignas to AUTHORS 2013-02-08 18:03:07 +01:00
bookmarks.c Update style 2012-10-09 01:12:18 +02:00
bookmarks.h
callbacks.c Initialize GdkRectangle structs in cb_view_vadjustment_value_changed 2012-12-13 18:18:03 +01:00
callbacks.h Add new shortcut function to display links 2012-12-07 18:05:59 +01:00
commands.c Fixed reverse searching behaviour to be more like less/vi 2012-12-19 00:29:31 +01:00
commands.h Implement cmd_exec with 2012-08-14 11:45:11 +02:00
common.mk
completion.c Update style 2012-10-09 01:12:18 +02:00
completion.h
config.c Set the horizontal scroll step 2013-02-08 18:03:06 +01:00
config.h
config.mk replace g_content_type_guess with libmagic 2013-02-13 15:33:29 +01:00
database-plain.c Update style 2012-10-09 01:12:18 +02:00
database-plain.h
database-sqlite.c Update style 2012-10-09 01:12:18 +02:00
database-sqlite.h
database.c Update style 2012-10-09 01:12:18 +02:00
database.h
document.c Fix the logic in guess_type 2013-02-19 15:27:23 +01:00
document.h Wrap long comment introduced in 27d7973 2012-12-14 00:39:12 +01:00
Doxyfile
glib-compat.h g_get_real_time appeard in 2.28 2013-02-09 15:18:35 +01:00
internal.h
LICENSE Update copyright years 2013-01-22 21:56:43 +01:00
links.c Handle ZATHURA_LINK_NONE 2013-02-23 13:56:10 +01:00
links.h Add new shortcut function to display links 2012-12-07 18:05:59 +01:00
macros.h
main.c Don't call g_threads_init with glib 2.31 and newer 2013-02-08 19:05:36 +01:00
Makefile replace g_content_type_guess with libmagic 2013-02-13 15:33:29 +01:00
marks.c Update style 2012-10-09 01:12:18 +02:00
marks.h
page-widget.c Restore compatibility with earlier versions of glib 2013-02-09 15:10:00 +01:00
page-widget.h Fix typos. 2012-07-22 15:17:31 +02:00
page.c
page.h
plugin-api.h
plugin.c demote some info-level messages to debug 2013-01-15 11:31:35 +01:00
plugin.h
print.c Add some comments 2012-12-07 15:24:57 +01:00
print.h
README Talk a bit more about flags. 2013-02-23 14:12:44 +01:00
render.c Fix the off-by-one with the poppler plugin 2013-02-23 17:18:02 +01:00
render.h
shortcuts.c Respect padding in sc_adjust_window 2013-02-07 09:26:37 +01:00
shortcuts.h Add new shortcut function to display links 2012-12-07 18:05:59 +01:00
synctex.c Update style 2012-10-09 01:12:18 +02:00
synctex.h
types.c Update style 2012-10-09 01:12:18 +02:00
types.h Don't expose zathura_jump_[st] in the public API. 2012-09-02 00:44:18 +02:00
utils.c Fix compiler warnings 2013-02-23 17:32:30 +01:00
utils.h Fix the off-by-one with the poppler plugin 2013-02-23 17:18:02 +01:00
version.h.in
zathura.1.rst Document display_link shortcut and its key binding 2012-12-08 17:59:09 +01:00
zathura.c Document saves with current basename if given a directory 2013-01-17 14:28:19 +01:00
zathura.desktop Update translations of Comment. 2012-08-09 14:47:18 +02:00
zathura.h Fixed reverse searching behaviour to be more like less/vi 2012-12-19 00:29:31 +01:00
zathura.pc.in
zathurarc.5.rst Readd set to list of mappings 2012-12-08 18:13:26 +01:00

zathura - a document viewer
===========================
zathura is a highly customizable and functional document viewer based on the
girara user interface library and several document libraries.

Requirements
------------
gtk2 (>= 2.28)
girara
sqlite3 (optional, >= 3.5.9)
check (for tests)
intltool
python-docutils (optional, for man pages)
libmagic from file(1) (optional, for mime-type detection)

Please note that you need to have a working pkg-config installation and that the
Makefile is only compatible with GNU make. If you don't have a working
pkg-config installation please set the GTK_INC, GTK_LIB, GIRARA_INC, GIRARA_LIB,
SQLITE_INC and SQLITE_LIB variables accordingly.

And also note that rst2man from python-docutils is needed to build the man pages.
If it is not installed, the man pages won't be built.

If you don't want to build with support for sqlite databases, you can set
WITH_SQLITE=0 and sqlite support won't be available. Please note that sqlite3
with metadata support is required, i.e. sqlite3 has to be built with
SQLITE_ENABLE_COLUMN_METADATA defined.

The use of magic to detect mimetypes is optional and can be disabled by setting
WITH_MAGIC=0.

If pass these flags add command line argument to make, you have to ensure that
you pass the same flags when executing the install target. Setting flags in
config.mk directly or via environment variables is not affected by this issue.

Installation
------------
To build and install zathura:

  make install

Uninstall:
----------
To delete zathura from your system, just type:

  make uninstall