]> git.pld-linux.org Git - packages/libfuse3.git/blob - libfuse3.spec
up to 3.16.2
[packages/libfuse3.git] / libfuse3.spec
1 Summary:        Filesystem in Userspace
2 Summary(pl.UTF-8):      System plików w przestrzeni użytkownika
3 Name:           libfuse3
4 Version:        3.16.2
5 Release:        1
6 License:        LGPL v2 (library), GPL v2 (tools)
7 Group:          Applications/System
8 #Source0Download: https://github.com/libfuse/libfuse/releases
9 Source0:        https://github.com/libfuse/libfuse/releases/download/fuse-%{version}/fuse-%{version}.tar.gz
10 # Source0-md5:  b00bf08b27ead4a9411578777e94a1cc
11 URL:            https://github.com/libfuse/libfuse
12 BuildRequires:  meson >= 0.51
13 BuildRequires:  ninja >= 1.5
14 BuildRequires:  pkgconfig
15 BuildRequires:  rpm-build >= 4.6
16 BuildRequires:  rpmbuild(macros) >= 1.736
17 BuildRequires:  sed >= 4.0
18 BuildRequires:  udev-devel
19 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
20
21 %description
22 FUSE (Filesystem in Userspace) is a simple interface for userspace
23 programs to export a virtual filesystem to the Linux kernel. FUSE also
24 aims to provide a secure method for non privileged users to create and
25 mount their own filesystem implementations.
26
27 This package contains a shared library.
28
29 %description -l pl.UTF-8
30 FUSE stanowi prosty interfejs dla programów działających w przestrzeni
31 użytkownika eksportujący wirtualny system plików do jądra Linuksa.
32 FUSE ma również na celu udostępnienie bezpiecznej metody tworzenia i
33 montowania własnych implementacji systemów plików przez zwykłych
34 (nieuprzywilejowanych) użytkowników.
35
36 Ten pakiet zawiera bibliotekę współdzieloną.
37
38 %package devel
39 Summary:        Filesystem in Userspace - Development header files
40 Summary(pl.UTF-8):      System plików w przestrzeni użytkownika - pliki nagłówkowe
41 License:        LGPL v2
42 Group:          Development/Libraries
43 Requires:       %{name} = %{version}-%{release}
44
45 %description devel
46 Libfuse3 library header files.
47
48 %description devel -l pl.UTF-8
49 Pliki nagłówkowe biblioteki libfuse3.
50
51 %package static
52 Summary:        Filesystem in Userspace - static library
53 Summary(pl.UTF-8):      System plików w przestrzeni użytkownika - biblioteka statyczna
54 License:        LGPL v2
55 Group:          Development/Libraries
56 Requires:       %{name}-devel = %{version}-%{release}
57
58 %description static
59 Static libfuse3 library.
60
61 %description static -l pl.UTF-8
62 Statyczna biblioteka libfuse3.
63
64 %package apidocs
65 Summary:        API documentation for FUSE 3 library
66 Summary(pl.UTF-8):      Dokumentacja API biblioteki FUSE 3
67 Group:          Documentation
68 BuildArch:      noarch
69
70 %description apidocs
71 API documentation for FUSE 3 library.
72
73 %description apidocs -l pl.UTF-8
74 Dokumentacja API biblioteki FUSE 3.
75
76 %package -n libfuse-common
77 Summary:        Common package for FUSE 2 and FUSE 3
78 Summary(pl.UTF-8):      Pliki wspólne dla FUSE 2 i FUSE 3
79 Group:          Libraries
80 Conflicts:      libfuse < 2.9.7-3
81 Conflicts:      libfuse3 < 3.2.4-2
82
83 %description -n libfuse-common
84 Common package for FUSE 2 and FUSE 3.
85
86 %description -n libfuse-common -l pl.UTF-8
87 Pliki wspólne dla FUSE 2 i FUSE 3.
88
89 %package tools
90 Summary:        Tools to mount FUSE 3 based filesystems
91 Summary(pl.UTF-8):      Narzędzia do montowania systemów plików opartych na FUSE 3
92 License:        GPL v2
93 Group:          Applications/System
94 Requires(pre):  /usr/bin/getgid
95 Requires(pre):  /usr/sbin/groupadd
96 Requires:       %{name} = %{version}-%{release}
97 Requires:       libfuse-common = %{version}-%{release}
98 Requires:       mount >= 2.18
99 Provides:       group(fuse)
100
101 %description tools
102 Tools to mount FUSE 3 based filesystems.
103
104 %description tools -l pl.UTF-8
105 Narzędzia do montowania systemów plików opartych na FUSE 3.
106
107 %prep
108 %setup -q -n fuse-%{version}
109
110 %{__sed} -i '/FUSERMOUNT_PROG/s,fusermount3,%{_bindir}/fusermount3,' lib/mount.c
111
112 %build
113 %meson build \
114         -Dinitscriptdir= \
115         -Duseroot=false
116
117 %ninja_build -C build
118
119 %{?with_tests:%ninja_test -C build}
120
121 %install
122 rm -rf $RPM_BUILD_ROOT
123 install -d $RPM_BUILD_ROOT{/%{_lib},%{_sysconfdir},/sbin}
124
125 %ninja_install -C build
126
127 %{__mv} $RPM_BUILD_ROOT%{_libdir}/libfuse3.so.* $RPM_BUILD_ROOT/%{_lib}
128 %{__rm} $RPM_BUILD_ROOT%{_libdir}/libfuse3.so
129 ln -sf /%{_lib}/$(basename $RPM_BUILD_ROOT/%{_lib}/libfuse3.so.*.*) \
130         $RPM_BUILD_ROOT%{_libdir}/libfuse3.so
131
132 %{__mv} $RPM_BUILD_ROOT{%{_sbindir},/sbin}/mount.fuse3
133
134 # part of default udev rules nowdays
135 %{__rm} $RPM_BUILD_ROOT/lib/udev/rules.d/99-fuse3.rules
136
137 %clean
138 rm -rf $RPM_BUILD_ROOT
139
140 %post   -p /sbin/ldconfig
141 %postun -p /sbin/ldconfig
142
143 %pre tools
144 %groupadd -g 84 fuse
145
146 %files
147 %defattr(644,root,root,755)
148 %doc README.md ChangeLog.rst AUTHORS doc/{README.NFS,fast17-vangoor.pdf,kernel.txt}
149 %attr(755,root,root) /%{_lib}/libfuse3.so.*.*.*
150 %attr(755,root,root) %ghost /%{_lib}/libfuse3.so.3
151
152 %files devel
153 %defattr(644,root,root,755)
154 %attr(755,root,root) %{_libdir}/libfuse3.so
155 %{_includedir}/fuse3
156 %{_pkgconfigdir}/fuse3.pc
157
158 %files static
159 %defattr(644,root,root,755)
160 %{_libdir}/libfuse3.a
161
162 %files apidocs
163 %defattr(644,root,root,755)
164 %doc doc/html/*
165
166 %files -n libfuse-common
167 %defattr(644,root,root,755)
168 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/fuse.conf
169
170 %files tools
171 %defattr(644,root,root,755)
172 %attr(4755,root,root) %{_bindir}/fusermount3
173 %attr(755,root,root) /sbin/mount.fuse3
174 %{_mandir}/man1/fusermount3.1*
175 %{_mandir}/man8/mount.fuse3.8*
This page took 0.112666 seconds and 4 git commands to generate.