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

Revision 4159, 4.1 KB checked in by daisuke, 13 years ago (diff)

inotify-tools: update to 3.14, fix typo

Line 
1Summary:        Command line utilities for inotify
2Summary(ja):    inotify のコマンドラインユーティリティ
3
4Name:           inotify-tools
5Version:        3.14
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
17Vendor: Project Vine
18Distribution: Vine Linux
19Packager: daisuke
20
21%description
22inotify-tools is a set of command-line programs for Linux providing
23a simple interface to inotify. These programs can be used to monitor
24and act upon filesystem events.
25
26%description -l ja
27inotiyu-tools は inotify へのシンプルなインタフェースを提供するコマンド
28ラインプログラムです。このプログラムを利用するとファイルシステムイベント
29をモニタしアクションを起こすことができます。
30
31%package        devel
32Summary:        Headers and libraries for building apps that use libinotifytools
33Summary(ja):    libinotifytoolsを利用するアプリケーションを開発するためのヘッダとライブラリ
34Group:          Development/Libraries
35Requires:       %{name} = %{version}-%{release}
36
37%description    devel
38This package contains headers and libraries required to build applications
39that use the libinotifytools library.
40
41%prep
42%setup -q
43
44
45%build
46%configure \
47        --disable-dependency-tracking \
48        --disable-static \
49        --enable-doxygen
50make %{?_smp_mflags}
51
52
53%install
54rm -rf %{buildroot}
55make install DESTDIR=%{buildroot}
56
57find %{buildroot} -type f -name "*.la" -exec rm -f {} ';'
58# We'll install documentation in the proper place
59rm -rf %{buildroot}/%{_datadir}/doc/
60
61
62%clean
63rm -rf %{buildroot}
64
65
66%post -p /sbin/ldconfig
67
68%postun -p /sbin/ldconfig
69
70
71%files
72%defattr(-,root,root,-)
73%doc AUTHORS COPYING ChangeLog NEWS README
74%{_bindir}/inotifywait
75%{_bindir}/inotifywatch
76%{_libdir}/libinotifytools.so.*
77%{_mandir}/man1/inotifywait.1*
78%{_mandir}/man1/inotifywatch.1*
79
80%files devel
81%defattr(-,root,root,-)
82%doc libinotifytools/src/doc/html/*
83%dir %{_includedir}/inotifytools/
84%{_includedir}/inotifytools/inotify.h
85%{_includedir}/inotifytools/inotify-nosys.h
86%{_includedir}/inotifytools/inotifytools.h
87%{_libdir}/libinotifytools.so
88
89
90%changelog
91* Fri Jun 17 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 3.14-1
92- update to 3.14
93- fix typo
94
95* Tue Oct 13 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.13-1
96- initial build for Vine Linux
97
98* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.13-3
99- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
100
101* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.13-2
102- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
103
104* Mon Feb 11 2008 Adel Gadllah <adel.gadllah@gmail.com> 3.13-1
105- Update to 3.13
106
107* Mon Sep 24 2007 Dawid Gajownik <gajownik[AT]gmail.com> - 3.11-1
108- Update to 3.11 (CVE-2007-5037, #299771)
109- Fix License tag
110
111* Sun Dec 17 2006 Dawid Gajownik <gajownik[AT]gmail.com> - 3.6-1
112- Update to 3.6
113
114* Tue Oct 31 2006 Dawid Gajownik <gajownik[AT]gmail.com> - 3.3-1
115- Update to 3.3
116- Add %%check stage
117
118* Sat Oct 28 2006 Dawid Gajownik <gajownik[AT]gmail.com> - 3.1-1
119- Update to 3.1
120- Add -devel subpackage
121
122* Tue Oct  3 2006 Dawid Gajownik <gajownik[AT]gmail.com> - 2.6-1
123- Update to 2.6
124
125* Mon Oct  2 2006 Dawid Gajownik <gajownik[AT]gmail.com> - 2.5-1
126- Update to 2.5
127
128* Sat Sep  9 2006 Dawid Gajownik <gajownik[AT]gmail.com> - 2.4-1
129- Update to 2.4
130
131* Tue Aug 15 2006 Dawid Gajownik <gajownik[AT]gmail.com> - 2.3-1
132- Update to 2.3
133- Drop implicit_syscall patch (fixed upstream)
134
135* Mon Jul 31 2006 Dawid Gajownik <gajownik[AT]gmail.com> - 2.2-3
136- Fix URL
137
138* Thu Jul  6 2006 Dawid Gajownik <gajownik[AT]gmail.com> - 2.2-2
139- Fix compilation warnings
140
141* Thu Jul  6 2006 Dawid Gajownik <gajownik[AT]gmail.com> - 2.2-1
142- New version 2.2
143- Update URL and description
144- Add man pages
145
146* Wed Jul  5 2006 Dawid Gajownik <gajownik[AT]gmail.com> - 2.1-1
147- Initial RPM release.
Note: See TracBrowser for help on using the repository browser.