]> git.pld-linux.org Git - SPECS.git/blob - launchtool.spec
SPECS updated Wed 28 Jul 14:48:01 CEST 2021
[SPECS.git] / launchtool.spec
1 Summary:        Runs a command supervising its execution
2 Summary(pl.UTF-8):      Uruchamianie poleceń z nadzorowaniem ich wykonywania
3 Name:           launchtool
4 Version:        0.7
5 Release:        1
6 License:        GPL
7 Group:          Applications/System
8 Vendor:         Enrico Zini <enrico@debian.org>
9 Source0:        http://people.debian.org/~enrico/woody/source/%{name}_%{version}-1.tar.gz
10 # Source0-md5:  4c0817af1615baee68688ac1dbc21907
11 URL:            http://people.debian.org/~enrico/launchtool.html
12 BuildRequires:  autoconf
13 BuildRequires:  automake
14 BuildRequires:  libstdc++-devel
15 BuildRequires:  popt-devel
16 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
17
18 %description
19 launchtool is a tool that runs a user-supplied command and can
20 supervise its execution in many ways, such as controlling its
21 environment, blocking signals, logging its output, changing user and
22 group permissions, limiting resource usage, restarting it if it fails,
23 running it continuously and turn it into a daemon.
24
25 %description -l pl.UTF-8
26 launchtool jest narzędziem, które uruchamia podane polecenie i może
27 nadzorować jego wykonywanie na wiele sposobów, takich jak kontrola
28 jego środowiska, blokowanie sygnałów, logowanie wyjścia, zmiana
29 uprawnień użytkownika i grupy, ograniczanie użycia zasobów, restart w
30 przypadku niepowodzenia, uruchamianie bez przerwy i zamiana w demona.
31
32 %prep
33 %setup -q
34
35 %build
36 %{__aclocal}
37 %{__autoconf}
38 %{__autoheader}
39 %{__automake}
40 %configure
41 %{__make}
42
43 %install
44 rm -rf $RPM_BUILD_ROOT
45
46 %{__make} install DESTDIR=$RPM_BUILD_ROOT
47 install -D launchtool.1 $RPM_BUILD_ROOT%{_mandir}/man1/launchtool.1
48
49 %clean
50 rm -rf $RPM_BUILD_ROOT
51
52 %files
53 %defattr(644,root,root,755)
54 %doc AUTHORS README ChangeLog NEWS TODO
55 %attr(755,root,root) %{_bindir}/*
56 %{_mandir}/man1/*
This page took 0.128404 seconds and 3 git commands to generate.