funionfs-vl.spec 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. Summary: Union filesystem in userspace
  2. Summary(ja): ユーザスペース Union ファイルシステム
  3. Name: funionfs
  4. Version: 0.4.3
  5. Release: 2%{?_dist_release}
  6. Group: System Environment/Base
  7. License: GPLv2+
  8. URL: http://funionfs.apiou.org
  9. Source0: http://funionfs.apiou.org/file/%{name}-%{version}.tar.gz
  10. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
  11. Requires: fuse
  12. BuildRequires: fuse-devel >= 2.5
  13. %description
  14. FunionFS implements a union filesystem in userspace using FUSE. FUSE
  15. provides a Linux kernel module which allows virtual filesystems to be written
  16. in userspace.
  17. %prep
  18. %setup -q
  19. %build
  20. %configure
  21. make %{?_smp mflags}
  22. %install
  23. rm -rf %{buildroot}
  24. make DESTDIR=%{buildroot} install
  25. %clean
  26. rm -rf %{buildroot}
  27. %files
  28. %defattr(-,root,root,-)
  29. /usr/bin/funionfs
  30. %doc AUTHORS ChangeLog COPYING BUGS TODO NEWS README
  31. %{_mandir}/man1/*
  32. %changelog
  33. * Mon Apr 04 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 0.4.3-2
  34. - rebuild with fuse-2.8
  35. * Mon Jun 15 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 0.4.3-1
  36. - initial build for Vine Linux
  37. * Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4.3-3
  38. - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
  39. * Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.4.3-2
  40. - Autorebuild for GCC 4.3
  41. * Thu Jul 26 2007 Jeff Law - 0.4.3-1
  42. - Initial RPM release.