source: projects/specs/trunk/f/fuse-exfat/fuse-exfat-vl.spec @ 10820

Revision 10820, 1.7 KB checked in by ara_t, 7 years ago (diff)

-update to 1.2.4 & fix [BTS:0003059]

Line 
1Name:           fuse-exfat
2Summary:        Free exFAT file system implementation
3Summary(ja):    フリーの exFAT ファイルシステム実装
4Version:        1.2.4
5Release:        1%{?_dist_release}
6License:        GPLv3+
7Group:          System Environment/Base
8Source0:        http://exfat.googlecode.com/files/fuse-exfat-%{version}.tar.gz
9URL:            http://code.google.com/p/exfat/
10BuildRequires:  fuse-devel
11# BuildRequires:  scons
12
13%description
14This driver is the first free exFAT file system implementation with write
15support. exFAT is a simple file system created by Microsoft. It is intended
16to replace FAT32 removing some of it's limitations. exFAT is a standard FS
17for SDXC memory cards.
18#'
19
20%prep
21%setup -q
22
23%build
24# scons CFLAGS="%{optflags}"
25%{configure}
26%{__make} %{?_smp_mflags}
27
28%install
29# scons install DESTDIR=%{buildroot}%{_sbindir}
30%{makeinstall}
31# move /usr/sbin/* to /sbin/* for automount
32%{__mkdir_p} %{buildroot}/sbin
33%{__ln_s} %{_sbindir}/mount.exfat %{buildroot}/sbin/
34%{__mv} %{buildroot}/%{_sbindir}/* %{buildroot}/sbin/
35%{__rm} -rf %{buildroot}/%{_sbindir}
36
37%{__mkdir} -p %{buildroot}%{_mandir}/man8/
38%{__cp} -a fuse/mount.exfat-fuse.8 %{buildroot}%{_mandir}/man8/mount.exfat-fuse.8
39%{__ln_s} %{_mandir}/man8/mount.exfat-fuse.8 %{buildroot}%{_mandir}/man8/mount.exfat.8
40
41%files
42%doc COPYING
43/sbin/mount.exfat
44/sbin/mount.exfat-fuse
45%{_mandir}/man8/*
46
47%changelog
48* Sat Nov 19 2016 Toshiaki Ara <ara_t@384.jp>  1.2.4-1
49- new upstream release
50- move /usr/sbin/* to /sbin/* for automaunt
51
52* Fri Nov 14 2014 Daisuke SUZUKI <daisuke@vinelinux.org> 1.0.1-1
53- initial build for Vine Linux
54
55* Sun Mar 17 2013 TingPing <tingping@tingping.se> - 1.0.1-1
56- Initial package
57
Note: See TracBrowser for help on using the repository browser.