unionfs-fuse-vl.spec 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. Summary: FUSE-based user-space union filesystem
  2. Summary(ja): FUSEベースのユーザ空間 union ファイルシステム
  3. Name: unionfs-fuse
  4. Version: 0.24
  5. Release: 1%{?_dist_release}
  6. License: GPL
  7. Group: System Environment/Kernel
  8. URL: http://podgorny.cz/moin/UnionFsFuse
  9. Source: http://podgorny.cz/unionfs-fuse/releases/%{name}-%{version}.tar.bz2
  10. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
  11. BuildRequires: fuse-devel >= 2.2
  12. Requires: fuse
  13. Vendor: Project Vine
  14. Distribution: Vine Linux
  15. Packager: daisuke
  16. %description
  17. unionfs-fuse is a FUSE-base user-space union filesystem.
  18. %description -l ja
  19. unionfs-fuse は FUSE ベースのユーザ空間 union ファイルシステムです。
  20. %prep
  21. %setup -q
  22. %build
  23. %{__make} %{?_smp_mflags} CFLAGS="%{optflags}"
  24. %install
  25. %{__rm} -rf %{buildroot}
  26. %{__install} -d -m0755 %{buildroot}%{_syssbindir}
  27. %{__install} -d -m0755 %{buildroot}%{_sysbindir}
  28. %{__install} -d -m0755 %{buildroot}%{_mandir}/man8/
  29. %{__install} -Dp -m0755 src/unionfs %{buildroot}%{_sysbindir}/unionfs
  30. %{__install} -Dp -m0644 man/unionfs-fuse.8 %{buildroot}%{_mandir}/man8/unionfs-fuse.8
  31. ### Symlink different locations
  32. %{__ln_s} -f %{_sysbindir}/unionfs %{buildroot}%{_syssbindir}/mount.unionfs
  33. %{__ln_s} -f unionfs-fuse.8 %{buildroot}%{_mandir}/man8/unionfs.8
  34. %clean
  35. %{__rm} -rf %{buildroot}
  36. %files
  37. %defattr(-, root, root, 0755)
  38. %doc CREDITS LICENSE NEWS examples/
  39. %doc %{_mandir}/man8/unionfs-fuse.8*
  40. %doc %{_mandir}/man8/unionfs.8*
  41. %{_sysbindir}/unionfs
  42. %{_syssbindir}/mount.unionfs
  43. %changelog
  44. * Mon Apr 04 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 0.24-1
  45. - initial build for Vine Linux
  46. * Mon Mar 23 2009 Dag Wieers <dag@wieers.com> - 0.23-1 - 7981/dag
  47. - Updated to release 0.23.
  48. * Thu Sep 04 2008 Dag Wieers <dag@wieers.com> - 0.22-1
  49. - Updated to release 0.22.
  50. * Sun Jul 27 2008 Dag Wieers <dag@wieers.com> - 0.21-1
  51. - Updated to release 0.21.
  52. * Tue Jun 03 2008 Dag Wieers <dag@wieers.com> - 0.20-1
  53. - Updated to release 0.20.
  54. * Tue Jun 03 2008 Dag Wieers <dag@wieers.com> - 0.19-1
  55. - Updated to release 0.19.
  56. * Sat Aug 11 2007 Dag Wieers <dag@wieers.com> - 0.18-1
  57. - Updated to release 0.18.
  58. * Sat May 12 2007 Dag Wieers <dag@wieers.com> - 0.17-1
  59. - Initial package. (using DAR)