| |
@@ -0,0 +1,40 @@
|
| |
+ From fc07fe641c9edcb9059c643f17803f0b3d6ba3b1 Mon Sep 17 00:00:00 2001
|
| |
+ From: "FeRD (Frank Dana)" <ferdnyc@gmail.com>
|
| |
+ Date: Thu, 17 Oct 2019 01:37:51 -0400
|
| |
+ Subject: [PATCH] Install remaining headers
|
| |
+
|
| |
+ ---
|
| |
+ Makefile.am | 6 +++++-
|
| |
+ squashfuse.pc.in | 2 +-
|
| |
+ 2 files changed, 6 insertions(+), 2 deletions(-)
|
| |
+
|
| |
+ diff --git a/Makefile.am b/Makefile.am
|
| |
+ index 1507525..456e824 100644
|
| |
+ --- a/Makefile.am
|
| |
+ +++ b/Makefile.am
|
| |
+ @@ -14,7 +14,11 @@ bin_PROGRAMS =
|
| |
+ noinst_PROGRAMS =
|
| |
+
|
| |
+ lib_LTLIBRARIES = libsquashfuse.la libfuseprivate.la
|
| |
+ -include_HEADERS = squashfuse.h squashfs_fs.h
|
| |
+ +
|
| |
+ +pkgincludedir = @includedir@/squashfuse
|
| |
+ +pkginclude_HEADERS = squashfuse.h squashfs_fs.h \
|
| |
+ + cache.h common.h config.h decompress.h dir.h file.h fs.h stack.h table.h \
|
| |
+ + traverse.h util.h xattr.h
|
| |
+
|
| |
+ pkgconfigdir = @pkgconfigdir@
|
| |
+ pkgconfig_DATA = squashfuse.pc
|
| |
+ diff --git a/squashfuse.pc.in b/squashfuse.pc.in
|
| |
+ index f131107..adbc769 100644
|
| |
+ --- a/squashfuse.pc.in
|
| |
+ +++ b/squashfuse.pc.in
|
| |
+ @@ -1,7 +1,7 @@
|
| |
+ prefix=@prefix@
|
| |
+ exec_prefix=@exec_prefix@
|
| |
+ libdir=@libdir@
|
| |
+ -includedir=@includedir@
|
| |
+ +includedir=@includedir@/squashfuse
|
| |
+
|
| |
+ Name: squashfuse
|
| |
+ Description: squashfuse library to mount squashfs archives
|
| |
As mentioned in rhbz1761626, the
squashfuse-develpackage is currently basically useless, as it does not install all the header files.This PR cherry-picks the patch that fixes the problem. Contrary to PR #1, it does not switch the package source to a git snapshot, instead opting to patching a tagged release.