]> git.pld-linux.org Git - packages/fuse-exfat.git/blob - fuse-exfat.spec
- up to 1.2.3
[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.3
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:  fca71e6598f79d037a3c7c969cb5710c
11 Patch0:         %{name}-man.patch
12 URL:            https://github.com/relan/exfat
13 BuildRequires:  autoconf >= 2.50
14 BuildRequires:  automake >= 1:1.11.2
15 BuildRequires:  libfuse-devel >= 2.6
16 BuildRequires:  pkgconfig
17 Requires:       libfuse >= 2.6
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 %patch0 -p1
34
35 %build
36 %{__aclocal}
37 %{__autoconf}
38 %{__autoheader}
39 %{__automake}
40 %configure
41
42 %{__make}
43
44 %install
45 rm -rf $RPM_BUILD_ROOT
46
47 %{__make} install \
48         DESTDIR=$RPM_BUILD_ROOT
49
50 echo '.so mount.exfat-fuse.8' >$RPM_BUILD_ROOT%{_mandir}/man8/mount.exfat.8
51
52 %clean
53 rm -rf $RPM_BUILD_ROOT
54
55 %files
56 %defattr(644,root,root,755)
57 %doc ChangeLog README
58 %attr(755,root,root) /sbin/mount.exfat
59 %attr(755,root,root) /sbin/mount.exfat-fuse
60 %{_mandir}/man8/mount.exfat.8*
61 %{_mandir}/man8/mount.exfat-fuse.8*
This page took 0.037205 seconds and 4 git commands to generate.