View Single Post
Guest | Posts: n/a | Thanked: 0 times | Joined on
#11
Originally Posted by willi6868 View Post
Could someone please provide a rpm-package or a How-To for this?
create a .spec file and use rpmbuild -ba /rpmbuild/SPECS/fuse-exfat.spec

fuse-exfat.spec (example)

Code:
 
Name:          fuse-exfat
Version:       1.0.1
Release:       0
Summary:       Free exFAT file system implementation
Group:         System/Tools
Vendor:        Samsung
Distribution:  SailfisfOS
URL:           http://code.google.com/p/exfat/
Source:        http://exfat.googlecode.com/files/fu...ersion}.tar.gz
License:       GPL
BuildRequires: glibc-devel
BuildRequires: libfuse-devel
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
* Wed Jan 22 2014 Builder <builder@...> 1.0.1
- To be done
 

The Following 3 Users Say Thank You to For This Useful Post: