]> git.pld-linux.org Git - packages/fuse-exfat.git/blob - fuse-exfat.spec
- updated to 1.4.0; fuse3 is preferred now
[packages/fuse-exfat.git] / fuse-exfat.spec
1 Summary:        FUSE module to access exFAT filesystem
2 Summary(pl.UTF-8):      Moduł FUSE pozwalający na dostęp do systemu plików exFAT
3 Name:           fuse-exfat
4 Version:        1.4.0
5 Release:        1
6 License:        GPL v2+
7 Group:          Applications/System
8 #Source0Download: https://github.com/relan/exfat/releases
9 Source0:        https://github.com/relan/exfat/releases/download/v%{version}/%{name}-%{version}.tar.gz
10 # Source0-md5:  765bf2484d48e5c253d0d8cb8de4f8c0
11 URL:            https://github.com/relan/exfat
12 BuildRequires:  autoconf >= 2.50
13 BuildRequires:  automake >= 1:1.11.2
14 # also libfuse-devel >= 2.6 possible, but libfuse3 is preferred
15 BuildRequires:  libfuse3-devel >= 3
16 BuildRequires:  pkgconfig
17 Requires:       libfuse3-tools >= 3
18 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
19
20 %define         _sbindir        /sbin
21
22 %description
23 This project aims to provide a full-featured exFAT file system
24 implementation for Linux and other Unix-like systems as a FUSE module.
25
26 %description -l pl.UTF-8
27 Celem tego projektu jest umożliwienie pełnego dostępu do systemu
28 plików exFAT z poziomu Linuksa i innych systemów uniksowych poprzez
29 moduł FUSE.
30
31 %prep
32 %setup -q
33
34 %build
35 %{__aclocal}
36 %{__autoconf}
37 %{__autoheader}
38 %{__automake}
39 %configure
40
41 %{__make}
42
43 %install
44 rm -rf $RPM_BUILD_ROOT
45
46 %{__make} install \
47         DESTDIR=$RPM_BUILD_ROOT
48
49 echo '.so mount.exfat-fuse.8' >$RPM_BUILD_ROOT%{_mandir}/man8/mount.exfat.8
50
51 %clean
52 rm -rf $RPM_BUILD_ROOT
53
54 %files
55 %defattr(644,root,root,755)
56 %doc ChangeLog README
57 %attr(755,root,root) /sbin/mount.exfat
58 %attr(755,root,root) /sbin/mount.exfat-fuse
59 %{_mandir}/man8/mount.exfat.8*
60 %{_mandir}/man8/mount.exfat-fuse.8*
This page took 0.043644 seconds and 4 git commands to generate.