|
@@ -1,40 +1,54 @@
|
|
Name: fuse-exfat
|
|
Name: fuse-exfat
|
|
Summary: Free exFAT file system implementation
|
|
Summary: Free exFAT file system implementation
|
|
Summary(ja): フリーの exFAT ファイルシステム実装
|
|
Summary(ja): フリーの exFAT ファイルシステム実装
|
|
-Version: 1.0.1
|
|
+Version: 1.2.4
|
|
Release: 1%{?_dist_release}
|
|
Release: 1%{?_dist_release}
|
|
License: GPLv3+
|
|
License: GPLv3+
|
|
Group: System Environment/Base
|
|
Group: System Environment/Base
|
|
Source0: http://exfat.googlecode.com/files/fuse-exfat-%{version}.tar.gz
|
|
Source0: http://exfat.googlecode.com/files/fuse-exfat-%{version}.tar.gz
|
|
URL: http://code.google.com/p/exfat/
|
|
URL: http://code.google.com/p/exfat/
|
|
BuildRequires: fuse-devel
|
|
BuildRequires: fuse-devel
|
|
-BuildRequires: scons
|
|
+# BuildRequires: scons
|
|
|
|
|
|
%description
|
|
%description
|
|
This driver is the first free exFAT file system implementation with write
|
|
This driver is the first free exFAT file system implementation with write
|
|
support. exFAT is a simple file system created by Microsoft. It is intended
|
|
support. exFAT is a simple file system created by Microsoft. It is intended
|
|
to replace FAT32 removing some of it's limitations. exFAT is a standard FS
|
|
to replace FAT32 removing some of it's limitations. exFAT is a standard FS
|
|
for SDXC memory cards.
|
|
for SDXC memory cards.
|
|
|
|
+#'
|
|
|
|
|
|
%prep
|
|
%prep
|
|
%setup -q
|
|
%setup -q
|
|
|
|
|
|
%build
|
|
%build
|
|
-scons CFLAGS="%{optflags}"
|
|
+# scons CFLAGS="%{optflags}"
|
|
|
|
+%{configure}
|
|
|
|
+%{__make} %{?_smp_mflags}
|
|
|
|
|
|
%install
|
|
%install
|
|
-scons install DESTDIR=%{buildroot}%{_sbindir}
|
|
+# scons install DESTDIR=%{buildroot}%{_sbindir}
|
|
-mkdir -p %{buildroot}%{_mandir}/man8/
|
|
+%{makeinstall}
|
|
-cp -a fuse/mount.exfat-fuse.8 %{buildroot}%{_mandir}/man8/mount.exfat-fuse.8
|
|
+# move /usr/sbin/* to /sbin/* for automount
|
|
-ln -s %{_mandir}/man8/mount.exfat-fuse.8 %{buildroot}%{_mandir}/man8/mount.exfat.8
|
|
+%{__mkdir_p} %{buildroot}/sbin
|
|
|
|
+%{__ln_s} %{_sbindir}/mount.exfat %{buildroot}/sbin/
|
|
|
|
+%{__mv} %{buildroot}/%{_sbindir}/* %{buildroot}/sbin/
|
|
|
|
+%{__rm} -rf %{buildroot}/%{_sbindir}
|
|
|
|
+
|
|
|
|
+%{__mkdir} -p %{buildroot}%{_mandir}/man8/
|
|
|
|
+%{__cp} -a fuse/mount.exfat-fuse.8 %{buildroot}%{_mandir}/man8/mount.exfat-fuse.8
|
|
|
|
+%{__ln_s} %{_mandir}/man8/mount.exfat-fuse.8 %{buildroot}%{_mandir}/man8/mount.exfat.8
|
|
|
|
|
|
%files
|
|
%files
|
|
%doc COPYING
|
|
%doc COPYING
|
|
-%{_sbindir}/mount.exfat-fuse
|
|
+/sbin/mount.exfat
|
|
-%{_sbindir}/mount.exfat
|
|
+/sbin/mount.exfat-fuse
|
|
%{_mandir}/man8/*
|
|
%{_mandir}/man8/*
|
|
|
|
|
|
%changelog
|
|
%changelog
|
|
|
|
+* Sat Nov 19 2016 Toshiaki Ara <ara_t@384.jp> 1.2.4-1
|
|
|
|
+- new upstream release
|
|
|
|
+- move /usr/sbin/* to /sbin/* for automaunt
|
|
|
|
+
|
|
* Fri Nov 14 2014 Daisuke SUZUKI <daisuke@vinelinux.org> 1.0.1-1
|
|
* Fri Nov 14 2014 Daisuke SUZUKI <daisuke@vinelinux.org> 1.0.1-1
|
|
- initial build for Vine Linux
|
|
- initial build for Vine Linux
|
|
|
|
|