]> git.pld-linux.org Git - packages/trackfs.git/blame - trackfs.spec
- dropped unnecessary ldconfig calls (copy-pasto)
[packages/trackfs.git] / trackfs.spec
CommitLineData
b1990da9
JB
1Summary: Track file system changes
2Summary(pl.UTF-8): Śledzenie zmian w systemie plików
3Name: trackfs
4Version: 0.1.0
5Release: 1
6License: GPL v2+
7Group: Applications/System
8Source0: http://www.mr511.de/software/%{name}-%{version}.tar.gz
9# Source0-md5: 602bdd3c74862c3cf2c1e06fd96e6f21
10URL: http://www.mr511.de/software/english.html
11ExclusiveArch: %{ix86} %{x8664} %{arm}
12BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
13
14%description
15Trackfs is a small program that tracks file system changes - creation,
16update and removal of fs objects - of another program (or group of
17programs). It is similar to `installwatch', but works quite
18differently: while installwatch uses LD_PRELOAD to intercept library
19functions like open() and unlink(), trackfs runs the child program(s)
20with tracing enabled and tracks the system calls they make.
21
22%description -l pl.UTF-8
23Trackfs to mały program śledzący zmiany w systemie plików - tworzenie,
24modyfikowanie i usuwanie obiektów systemu plików - wykonywane przez
25inny program (lub grupę programów). Jest podobny do programu
26"installwatch", ale działa trochę inaczej - o ile installwatch
27wykorzystuje LD_PRELOAD do przechwytywania funkcji bibliotecznych
28takich jak open() czy unlink(), trackfs uruchamia program(y) potomne z
29włączonym śledzeniem i śledzi wykonywane wywołania systemowe.
30
31%prep
32%setup -q
33
34%build
35%configure
36
37%{__make}
38
39%install
40rm -rf $RPM_BUILD_ROOT
41
42%{__make} install \
43 instroot=$RPM_BUILD_ROOT
44
45%clean
46rm -rf $RPM_BUILD_ROOT
47
b1990da9
JB
48%files
49%defattr(644,root,root,755)
50%doc NEWS README
51%attr(755,root,root) %{_bindir}/playback
52%attr(755,root,root) %{_bindir}/trackfs
53%attr(755,root,root) %{_bindir}/trexec
54%{_mandir}/man1/playback.1*
55%{_mandir}/man1/trackfs.1*
56%{_mandir}/man1/trexec.1*
This page took 0.07115 seconds and 4 git commands to generate.