]> 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.2.8
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:  800ed5f9fdebcf99874b7ec95e41a643
11 URL:            https://github.com/relan/exfat
12 BuildRequires:  autoconf >= 2.50
13 BuildRequires:  automake >= 1:1.11.2
14 BuildRequires:  libfuse-devel >= 2.6
15 BuildRequires:  pkgconfig
16 Requires:       libfuse >= 2.6
17 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
18
19 %define         _sbindir        /sbin
20
21 %description
22 This project aims to provide a full-featured exFAT file system
23 implementation for Linux and other Unix-like systems as a FUSE module.
24
25 %description -l pl.UTF-8
26 Celem tego projektu jest umożliwienie pełnego dostępu do systemu
27 plików exFAT z poziomu Linuksa i innych systemów uniksowych poprzez
28 moduł FUSE.
29
30 %prep
31 %setup -q
32
33 %build
34 %{__aclocal}
35 %{__autoconf}
36 %{__autoheader}
37 %{__automake}
38 %configure
39
40 %{__make}
41
42 %install
43 rm -rf $RPM_BUILD_ROOT
44
45 %{__make} install \
46         DESTDIR=$RPM_BUILD_ROOT
47
48 echo '.so mount.exfat-fuse.8' >$RPM_BUILD_ROOT%{_mandir}/man8/mount.exfat.8
49
50 %clean
51 rm -rf $RPM_BUILD_ROOT
52
53 %files
54 %defattr(644,root,root,755)
55 %doc ChangeLog README
56 %attr(755,root,root) /sbin/mount.exfat
57 %attr(755,root,root) /sbin/mount.exfat-fuse
58 %{_mandir}/man8/mount.exfat.8*
59 %{_mandir}/man8/mount.exfat-fuse.8*
This page took 0.078034 seconds and 3 git commands to generate.