From ce41df6467521ff9fd4f16514ae7d6ebb62eb1ed Mon Sep 17 00:00:00 2001 From: lukefromdc Date: Mon, 25 Dec 2023 15:11:04 -0500 Subject: comics: Use libarchive to unpack documents This commit eliminates the use of external commands for opening comic documents, and uses libarchive instead. --- backend/comics/Makefile.am | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'backend/comics/Makefile.am') diff --git a/backend/comics/Makefile.am b/backend/comics/Makefile.am index b27f9b85..77f3dedb 100644 --- a/backend/comics/Makefile.am +++ b/backend/comics/Makefile.am @@ -12,12 +12,15 @@ backend_LTLIBRARIES = libcomicsdocument.la libcomicsdocument_la_SOURCES = \ comics-document.c \ - comics-document.h + comics-document.h \ + ev-archive.c \ + ev-archive.h libcomicsdocument_la_LDFLAGS = $(BACKEND_LIBTOOL_FLAGS) libcomicsdocument_la_LIBADD = \ $(top_builddir)/libdocument/libatrildocument.la \ $(BACKEND_LIBS) \ + $(COMICS_LIBS) \ $(LIB_LIBS) backend_in_files = comicsdocument.atril-backend.desktop.in -- cgit v1.2.1