fuse-exfat-vl.spec 1.7 KB

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