]> git.pld-linux.org Git - packages/fuse-exfat.git/blame_incremental - fuse-exfat.spec
- updated to 1.4.0; fuse3 is preferred now
[packages/fuse-exfat.git] / fuse-exfat.spec
... / ...
CommitLineData
1Summary: FUSE module to access exFAT filesystem
2Summary(pl.UTF-8): Moduł FUSE pozwalający na dostęp do systemu plików exFAT
3Name: fuse-exfat
4Version: 1.4.0
5Release: 1
6License: GPL v2+
7Group: Applications/System
8#Source0Download: https://github.com/relan/exfat/releases
9Source0: https://github.com/relan/exfat/releases/download/v%{version}/%{name}-%{version}.tar.gz
10# Source0-md5: 765bf2484d48e5c253d0d8cb8de4f8c0
11URL: https://github.com/relan/exfat
12BuildRequires: autoconf >= 2.50
13BuildRequires: automake >= 1:1.11.2
14# also libfuse-devel >= 2.6 possible, but libfuse3 is preferred
15BuildRequires: libfuse3-devel >= 3
16BuildRequires: pkgconfig
17Requires: libfuse3-tools >= 3
18BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
19
20%define _sbindir /sbin
21
22%description
23This project aims to provide a full-featured exFAT file system
24implementation for Linux and other Unix-like systems as a FUSE module.
25
26%description -l pl.UTF-8
27Celem tego projektu jest umożliwienie pełnego dostępu do systemu
28plików exFAT z poziomu Linuksa i innych systemów uniksowych poprzez
29moduł 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
44rm -rf $RPM_BUILD_ROOT
45
46%{__make} install \
47 DESTDIR=$RPM_BUILD_ROOT
48
49echo '.so mount.exfat-fuse.8' >$RPM_BUILD_ROOT%{_mandir}/man8/mount.exfat.8
50
51%clean
52rm -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.028918 seconds and 4 git commands to generate.