]> git.pld-linux.org Git - packages/archivemount.git/blob - archivemount.spec
R: libfuse-tools; rel 2
[packages/archivemount.git] / archivemount.spec
1 Summary:        FUSE based filesystem for mounting archives
2 Name:           archivemount
3 Version:        0.9.1
4 Release:        2
5 License:        LGPL v2+
6 Group:          Applications/System
7 Source0:        https://www.cybernoia.de/software/archivemount/%{name}-%{version}.tar.gz
8 # Source0-md5:  954c096230ab1e1f7153555c0221b37d
9 URL:            https://www.cybernoia.de/software/archivemount.html
10 BuildRequires:  libarchive-devel
11 BuildRequires:  libfuse-devel >= 2.6
12 BuildRequires:  pkgconfig
13 Requires:       libfuse >= 2.6
14 Requires:       libfuse-tools >= 2.6
15 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
16
17 %description
18 archivemount is a piece of glue code between libarchive and FUSE. It
19 can be used to mount a (possibly compressed) archive (as in .tar.gz or
20 .tar.bz2) and use it like an ordinary filesystem.
21
22 %prep
23 %setup -q
24
25 %build
26 %configure
27
28 %install
29 rm -rf $RPM_BUILD_ROOT
30
31 %{__make} install \
32         DESTDIR=$RPM_BUILD_ROOT
33
34 %clean
35 rm -rf $RPM_BUILD_ROOT
36
37 %files
38 %defattr(644,root,root,755)
39 %doc CHANGELOG README
40 %attr(755,root,root) %{_bindir}/archivemount
41 %{_mandir}/man1/archivemount.1*
This page took 0.111226 seconds and 4 git commands to generate.