fuse-exfat-vl.spec 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. Name: fuse-exfat
  2. Summary: Free exFAT file system implementation
  3. Summary(ja): フリーの exFAT ファイルシステム実装
  4. Version: 1.0.1
  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. %prep
  18. %setup -q
  19. %build
  20. scons CFLAGS="%{optflags}"
  21. %install
  22. scons install DESTDIR=%{buildroot}%{_sbindir}
  23. mkdir -p %{buildroot}%{_mandir}/man8/
  24. cp -a fuse/mount.exfat-fuse.8 %{buildroot}%{_mandir}/man8/mount.exfat-fuse.8
  25. ln -s %{_mandir}/man8/mount.exfat-fuse.8 %{buildroot}%{_mandir}/man8/mount.exfat.8
  26. %files
  27. %doc COPYING
  28. %{_sbindir}/mount.exfat-fuse
  29. %{_sbindir}/mount.exfat
  30. %{_mandir}/man8/*
  31. %changelog
  32. * Fri Nov 14 2014 Daisuke SUZUKI <daisuke@vinelinux.org> 1.0.1-1
  33. - initial build for Vine Linux
  34. * Sun Mar 17 2013 TingPing <tingping@tingping.se> - 1.0.1-1
  35. - Initial package