inotify-tools-vl.spec 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. Summary: Command line utilities for inotify
  2. Summary(ja): inotofy のコマンドラインユーティリティ
  3. Name: inotify-tools
  4. Version: 3.13
  5. Release: 1%{?_dist_release}
  6. Group: Applications/System
  7. License: GPLv2
  8. URL: http://inotify-tools.sourceforge.net/
  9. Source0: http://download.sf.net/inotify-tools/inotify-tools-%{version}.tar.gz
  10. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
  11. BuildRequires: autoconf
  12. BuildRequires: doxygen
  13. %description
  14. inotify-tools is a set of command-line programs for Linux providing
  15. a simple interface to inotify. These programs can be used to monitor
  16. and act upon filesystem events.
  17. %package devel
  18. Summary: Headers and libraries for building apps that use libinotifytools
  19. Summary(ja): Headers and libraries for building apps that use libinotifytools
  20. Group: Development/Libraries
  21. Requires: %{name} = %{version}-%{release}
  22. %description devel
  23. This package contains headers and libraries required to build applications
  24. that use the libinotifytools library.
  25. %prep
  26. %setup -q
  27. %build
  28. %configure \
  29. --disable-dependency-tracking \
  30. --disable-static \
  31. --enable-doxygen
  32. make %{?_smp_mflags}
  33. %install
  34. rm -rf %{buildroot}
  35. make install DESTDIR=%{buildroot}
  36. find %{buildroot} -type f -name "*.la" -exec rm -f {} ';'
  37. # We'll install documentation in the proper place
  38. rm -rf %{buildroot}/%{_datadir}/doc/
  39. %clean
  40. rm -rf %{buildroot}
  41. %post -p /sbin/ldconfig
  42. %postun -p /sbin/ldconfig
  43. %files
  44. %defattr(-,root,root,-)
  45. %doc AUTHORS COPYING ChangeLog NEWS README
  46. %{_bindir}/inotifywait
  47. %{_bindir}/inotifywatch
  48. %{_libdir}/libinotifytools.so.*
  49. %{_mandir}/man1/inotifywait.1*
  50. %{_mandir}/man1/inotifywatch.1*
  51. %files devel
  52. %defattr(-,root,root,-)
  53. %doc libinotifytools/src/doc/html/*
  54. %dir %{_includedir}/inotifytools/
  55. %{_includedir}/inotifytools/inotify.h
  56. %{_includedir}/inotifytools/inotify-nosys.h
  57. %{_includedir}/inotifytools/inotifytools.h
  58. %{_libdir}/libinotifytools.so
  59. %changelog
  60. * Tue Oct 13 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.13-1
  61. - initial build for Vine Linux
  62. * Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.13-3
  63. - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
  64. * Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.13-2
  65. - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
  66. * Mon Feb 11 2008 Adel Gadllah <adel.gadllah@gmail.com> 3.13-1
  67. - Update to 3.13
  68. * Mon Sep 24 2007 Dawid Gajownik <gajownik[AT]gmail.com> - 3.11-1
  69. - Update to 3.11 (CVE-2007-5037, #299771)
  70. - Fix License tag
  71. * Sun Dec 17 2006 Dawid Gajownik <gajownik[AT]gmail.com> - 3.6-1
  72. - Update to 3.6
  73. * Tue Oct 31 2006 Dawid Gajownik <gajownik[AT]gmail.com> - 3.3-1
  74. - Update to 3.3
  75. - Add %%check stage
  76. * Sat Oct 28 2006 Dawid Gajownik <gajownik[AT]gmail.com> - 3.1-1
  77. - Update to 3.1
  78. - Add -devel subpackage
  79. * Tue Oct 3 2006 Dawid Gajownik <gajownik[AT]gmail.com> - 2.6-1
  80. - Update to 2.6
  81. * Mon Oct 2 2006 Dawid Gajownik <gajownik[AT]gmail.com> - 2.5-1
  82. - Update to 2.5
  83. * Sat Sep 9 2006 Dawid Gajownik <gajownik[AT]gmail.com> - 2.4-1
  84. - Update to 2.4
  85. * Tue Aug 15 2006 Dawid Gajownik <gajownik[AT]gmail.com> - 2.3-1
  86. - Update to 2.3
  87. - Drop implicit_syscall patch (fixed upstream)
  88. * Mon Jul 31 2006 Dawid Gajownik <gajownik[AT]gmail.com> - 2.2-3
  89. - Fix URL
  90. * Thu Jul 6 2006 Dawid Gajownik <gajownik[AT]gmail.com> - 2.2-2
  91. - Fix compilation warnings
  92. * Thu Jul 6 2006 Dawid Gajownik <gajownik[AT]gmail.com> - 2.2-1
  93. - New version 2.2
  94. - Update URL and description
  95. - Add man pages
  96. * Wed Jul 5 2006 Dawid Gajownik <gajownik[AT]gmail.com> - 2.1-1
  97. - Initial RPM release.