]> git.pld-linux.org Git - packages/libfuse.git/blame - libfuse.spec
- don't provide fuse group
[packages/libfuse.git] / libfuse.spec
CommitLineData
1c836eba
ER
1# TODO:
2# - unpackaged:
3# /etc/init.d/fuse
4# /etc/udev/rules.d/99-fuse.rules
c28e4405
PS
5#
6# Condtional build:
7%bcond_without dist_kernel # without distribution kernel
bc819d7f 8%bcond_with kernel # build kernel modules
4965dc0c 9%bcond_without userspace # don't build userspace tools
a35003d8 10%bcond_with verbose # verbose build (V=1)
127ee08d 11%bcond_without selinux # build without SELinux support
49bc7a47
ER
12
13%ifarch sparc
14%undefine with_smp
441a6a89 15%endif
49bc7a47
ER
16
17%if %{without kernel}
18%undefine with_dist_kernel
19%endif
20%if "%{_alt_kernel}" != "%{nil}"
21%undefine with_userspace
22%endif
23
24%define pname libfuse
9f8074df 25%define _rel 3
9c73f04f 26Summary: Filesystem in Userspace
8bb117ff 27Summary(pl.UTF-8): System plików w przestrzeni użytkownika
49bc7a47 28Name: %{pname}%{_alt_kernel}
c8322647 29Version: 2.7.3
d6263038 30Release: %{_rel}
c02bbc70 31Epoch: 0
e1541708 32License: GPL v2
fb76d4f3 33Group: Applications/System
c02bbc70 34Source0: http://dl.sourceforge.net/fuse/fuse-%{version}.tar.gz
c8322647 35# Source0-md5: 98563fc7b265b7479a3178181cbcf59a
f10c5dbc 36Source1: fuse.conf
d6263038 37Patch0: kernel-misc-fuse-Makefile.am.patch
49bc7a47 38Patch1: %{pname}-link.patch
498c72b7 39URL: http://fuse.sourceforge.net/
5bf8c553 40BuildRequires: autoconf
41BuildRequires: automake
4d1cfd58 42BuildRequires: libtool
1ad71c20 43BuildRequires: cpp
4d1cfd58 44BuildRequires: sed >= 4.0
498c72b7 45%if %{with kernel}
3aa68fea 46%{?with_dist_kernel:BuildRequires: kernel%{_alt_kernel}-module-build >= 3:2.6.20.2}
2f81dc21 47BuildRequires: rpmbuild(macros) >= 1.379
002758f1 48%endif
4d1cfd58 49%if %{with userspace}
efd7a38f 50%{?with_selinux:BuildRequires: libselinux-devel}
4d1cfd58 51%endif
244ef643
ER
52Requires(postun): /sbin/ldconfig
53Requires(postun): /usr/sbin/groupdel
b066fee7 54Requires(pre): /usr/bin/getgid
55Requires(pre): /usr/sbin/groupadd
9c73f04f 56Buildroot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
c28e4405 57
9c73f04f 58%description
59FUSE (Filesystem in Userspace) is a simple interface for userspace
544fbe9d 60programs to export a virtual filesystem to the Linux kernel. FUSE also
9c73f04f 61aims to provide a secure method for non privileged users to create and
62mount their own filesystem implementations.
63
d6263038
JB
64This package contains a shared library.
65
fa7f9ca7
JR
66%description -l pl.UTF-8
67FUSE stanowi prosty interfejs dla programów działających w przestrzeni
68użytkownika eksportujący wirtualny system plików do jądra Linuksa.
69FUSE ma również na celu udostępnienie bezpiecznej metody tworzenia i
70montowania własnych implementacji systemów plików przez zwykłych
71(nieuprzywilejowanych) użytkowników.
9c73f04f 72
fa7f9ca7 73Ten pakiet zawiera bibliotekę współdzieloną.
d6263038
JB
74
75%package devel
76Summary: Filesytem in Userspace - Development header files
8bb117ff 77Summary(pl.UTF-8): System plików w przestrzeni użytkownika - pliki nagłówkowe
d6263038 78Group: Development/Libraries
49bc7a47 79Requires: %{pname} = %{epoch}:%{version}-%{_rel}
d6263038
JB
80
81%description devel
82Libfuse library header files.
83
fa7f9ca7
JR
84%description devel -l pl.UTF-8
85Pliki nagłówkowe biblioteki libfuse.
d6263038
JB
86
87%package static
88Summary: Filesytem in Userspace - static library
8bb117ff 89Summary(pl.UTF-8): System plików w przestrzeni użytkownika - biblioteka statyczna
2d1d7461 90Group: Development/Libraries
d6263038
JB
91Requires: libfuse-devel = %{epoch}:%{version}-%{_rel}
92
93%description static
94Static libfuse libraries.
95
fa7f9ca7 96%description static -l pl.UTF-8
d6263038
JB
97Statyczna biblioteka libfuse.
98
0612e680 99%package -n kernel%{_alt_kernel}-misc-fuse
d6263038 100Summary: Filesystem in Userspace
8bb117ff 101Summary(pl.UTF-8): System plików w przestrzeni użytkownika
d6263038
JB
102Release: %{_rel}@%{_kernel_ver_str}
103License: GPL v2
104Group: Base/Kernel
d6263038 105Requires(post,postun): /sbin/depmod
8bfc0885 106%if %{with dist_kernel}
2f81dc21 107%requires_releq_kernel
108Requires(postun): %releq_kernel
8bfc0885 109%endif
0612e680 110%if "%{_alt_kernel}" != "%{nil}"
111Provides: kernel-misc-fuse
112%endif
d6263038 113
0612e680 114%description -n kernel%{_alt_kernel}-misc-fuse
d6263038
JB
115FUSE (Filesystem in Userspace) is a simple interface for userspace
116programs to export a virtual filesystem to the Linux kernel. FUSE also
117aims to provide a secure method for non privileged users to create and
118mount their own filesystem implementations.
119
fa7f9ca7
JR
120%description -n kernel%{_alt_kernel}-misc-fuse -l pl.UTF-8
121FUSE stanowi prosty interfejs dla programów działających w przestrzeni
122użytkownika eksportujący wirtualny system plików do jądra Linuksa.
123FUSE ma również na celu udostępnienie bezpiecznej metody tworzenia i
124montowania własnych implementacji systemów plików przez zwykłych
125(nieuprzywilejowanych) użytkowników.
d6263038 126
9c73f04f 127%prep
4965dc0c 128%setup -q -n fuse-%{version}
3d2362f9 129%patch0 -p1
4d1cfd58 130%patch1 -p1
d6263038 131
202ebc3b 132sed -i '/FUSERMOUNT_PROG/s,fusermount,%{_bindir}/fusermount,' lib/mount.c
9c73f04f 133
134%build
496fbb04 135%{__libtoolize}
a35003d8 136%{__aclocal}
496fbb04 137%{__autoheader}
a35003d8
PS
138%{__autoconf}
139%{__automake}
c660eb4c 140%configure \
127ee08d 141 %{!?with_selinux:ac_cv_header_selinux_selinux_h=no} \
2e74d96c 142 --%{?with_kernel:en}%{!?with_kernel:dis}able-kernel-module \
d6263038
JB
143 --enable-lib \
144 --enable-util \
2e74d96c 145 %{?with_kernel:--with-kernel=%{_kernelsrcdir}}
7fb6785c 146
8bfc0885
PS
147%if %{with userspace}
148cp kernel/fuse_kernel.h include/
149for DIR in include lib util; do
150%{__make} -C $DIR
151done
152%endif
153
a35003d8 154%if %{with kernel}
9e146969 155%build_kernel_modules -m fuse -C kernel
a35003d8 156%endif
9c73f04f 157
9c73f04f 158%install
159rm -rf $RPM_BUILD_ROOT
3af001c7 160install -d $RPM_BUILD_ROOT{%{_pkgconfigdir},%{_sysconfdir}}
9c73f04f 161
8413d3ec 162%if %{with userspace}
496fbb04 163for DIR in include lib util; do
164%{__make} -C $DIR install \
165 DESTDIR=$RPM_BUILD_ROOT
166done
167
168install fuse.pc $RPM_BUILD_ROOT%{_pkgconfigdir}
3af001c7 169install %{SOURCE1} $RPM_BUILD_ROOT%{_sysconfdir}
8413d3ec 170%endif
9c73f04f 171
8413d3ec 172%if %{with kernel}
0612e680 173%install_kernel_modules -m kernel/fuse -d kernel/fs
8413d3ec
PS
174%endif
175
c02bbc70
JB
176%clean
177rm -rf $RPM_BUILD_ROOT
178
b066fee7 179%pre
9f8074df 180%groupadd -g 84 fuse || :
b066fee7 181
d6263038 182%post -p /sbin/ldconfig
244ef643 183%postun
b066fee7 184/sbin/ldconfig
d6263038 185
0612e680 186%post -n kernel%{_alt_kernel}-misc-fuse
e1541708 187%depmod %{_kernel_ver}
9c73f04f 188
0612e680 189%postun -n kernel%{_alt_kernel}-misc-fuse
e1541708
PS
190%depmod %{_kernel_ver}
191
d6263038 192%if %{with userspace}
9c73f04f 193%files
194%defattr(644,root,root,755)
496fbb04 195%doc README NEWS ChangeLog AUTHORS doc/*
f5e4370a 196%config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/fuse.conf
93034210 197%attr(4754,root,fuse) %{_bindir}/fusermount
80df11a9 198%attr(755,root,root) %{_bindir}/ulockmgr_server
f5e4370a 199%attr(755,root,root) /sbin/mount.fuse
c6e9eee0
JB
200%attr(755,root,root) %{_libdir}/libfuse.so.*.*.*
201%attr(755,root,root) %ghost %{_libdir}/libfuse.so.2
202%attr(755,root,root) %{_libdir}/libulockmgr.so.*.*.*
203%attr(755,root,root) %ghost %{_libdir}/libulockmgr.so.1
4965dc0c 204
d6263038 205%files devel
4965dc0c 206%defattr(644,root,root,755)
c6e9eee0
JB
207%attr(755,root,root) %{_libdir}/libfuse.so
208%attr(755,root,root) %{_libdir}/libulockmgr.so
209%{_libdir}/libfuse.la
210%{_libdir}/libulockmgr.la
211%{_includedir}/fuse
212%{_includedir}/fuse.h
80df11a9 213%{_includedir}/ulockmgr.h
496fbb04 214%{_pkgconfigdir}/fuse.pc
9c73f04f 215
d6263038 216%files static
4965dc0c 217%defattr(644,root,root,755)
c6e9eee0
JB
218%{_libdir}/libfuse.a
219%{_libdir}/libulockmgr.a
f981350a 220%endif
d6263038
JB
221
222%if %{with kernel}
0612e680 223%files -n kernel%{_alt_kernel}-misc-fuse
d6263038
JB
224%defattr(644,root,root,755)
225/lib/modules/%{_kernel_ver}/kernel/fs/fuse.ko*
6895341f 226%endif
This page took 0.155138 seconds and 4 git commands to generate.