source: projects/specs/trunk/i/inotify-tools/inotify-tools-vl.spec @ 521

Revision 521, 3.6 KB checked in by daisuke, 14 years ago (diff)

import VineSeed package specs

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