diff --git a/README.md b/README.md index d7ef7fd..888a5ed 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # fuse-exfat +A full-featured exFAT file system implementation for GNU/Linux other Unix-like systems as a FUSE module. + diff --git a/fuse-exfat.spec b/fuse-exfat.spec new file mode 100644 index 0000000..54d1f94 --- /dev/null +++ b/fuse-exfat.spec @@ -0,0 +1,62 @@ +Name: fuse-exfat +Version: 1.0.1 +Release: 1mamba +Summary: Free exFAT file system implementation +Group: System/Tools +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: http://code.google.com/p/exfat/ +Source: http://exfat.googlecode.com/files/fuse-exfat-%{version}.tar.gz +License: GPL +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +BuildRequires: libfuse-devel +## AUTOBUILDREQ-END +BuildRequires: scons +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%debug_package + +%description +A full-featured exFAT file system implementation for GNU/Linux other Unix-like systems as a FUSE module. + +%prep +%setup -q + +%build +scons + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +scons install DESTDIR=%{buildroot}/sbin + +install -d %{buildroot}%{_mandir}/man8 +install -m 644 fuse/mount.exfat-fuse.8 \ + %{buildroot}%{_mandir}/man8/mount.exfat-fuse.8 + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%files +%defattr(-,root,root) +/sbin/mount.exfat +/sbin/mount.exfat-fuse +%{_mandir}/man8/mount.exfat-fuse.* +%doc COPYING + +%changelog +* Sun Feb 03 2013 Automatic Build System 1.0.1-1mamba +- automatic version update by autodist + +* Mon Jan 21 2013 Automatic Build System 1.0.0-1mamba +- automatic version update by autodist + +* Sat Dec 01 2012 Automatic Build System 0.9.8-1mamba +- automatic version update by autodist + +* Sun Mar 25 2012 Davide Madrisan 0.9.7-2mamba +- add a manpage + +* Thu Mar 08 2012 Silvan Calarco 0.9.7-1mamba +- package created by autospec