]> git.pld-linux.org Git - SPECS.git/blob - trackfs.spec
SPECS updated Sun 1 Aug 20:28:02 CEST 2021
[SPECS.git] / trackfs.spec
1 Summary:        Track file system changes
2 Summary(pl.UTF-8):      Śledzenie zmian w systemie plików
3 Name:           trackfs
4 Version:        0.1.0
5 Release:        1
6 License:        GPL v2+
7 Group:          Applications/System
8 Source0:        http://www.mr511.de/software/%{name}-%{version}.tar.gz
9 # Source0-md5:  602bdd3c74862c3cf2c1e06fd96e6f21
10 URL:            http://www.mr511.de/software/english.html
11 ExclusiveArch:  %{ix86} %{x8664} %{arm}
12 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
13
14 %description
15 Trackfs is a small program that tracks file system changes - creation,
16 update and removal of fs objects - of another program (or group of
17 programs). It is similar to `installwatch', but works quite
18 differently: while installwatch uses LD_PRELOAD to intercept library
19 functions like open() and unlink(), trackfs runs the child program(s)
20 with tracing enabled and tracks the system calls they make.
21
22 %description -l pl.UTF-8
23 Trackfs to mały program śledzący zmiany w systemie plików - tworzenie,
24 modyfikowanie i usuwanie obiektów systemu plików - wykonywane przez
25 inny program (lub grupę programów). Jest podobny do programu
26 "installwatch", ale działa trochę inaczej - o ile installwatch
27 wykorzystuje LD_PRELOAD do przechwytywania funkcji bibliotecznych
28 takich jak open() czy unlink(), trackfs uruchamia program(y) potomne z
29 włą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
40 rm -rf $RPM_BUILD_ROOT
41
42 %{__make} install \
43         instroot=$RPM_BUILD_ROOT
44
45 %clean
46 rm -rf $RPM_BUILD_ROOT
47
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.389357 seconds and 3 git commands to generate.