]> git.pld-linux.org Git - SPECS.git/blob - rcorder.spec
SPECS updated Sun 1 Aug 20:13:02 CEST 2021
[SPECS.git] / rcorder.spec
1 Summary:        rcorder prints a dependency ordering of interdependent files
2 Summary(pl.UTF-8):      rcorder - wypisywanie kolejności zależności współzależnych plików
3 Name:           rcorder
4 Version:        20040522
5 Release:        0.1
6 Epoch:          0
7 License:        BSD
8 Group:          Applications/Text
9 Source0:        http://test.mmt.pl/pld/rcorder/%{name}-%{version}.tar.gz
10 # Source0-md5:  4bad517b3b8809cf1994dea0c76e4002
11 URL:            http://www.freebsd.org/cgi/cvsweb.cgi/src/sbin/rcorder/
12 BuildRequires:  autoconf >= 2.59
13 BuildRequires:  automake >= 1:1.8.2
14 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
15
16 %description
17 The rcorder utility is designed to print out a dependency ordering of
18 a set of interdependent files.  Typically it is used to find an
19 execution sequence for a set of shell scripts in which certain files
20 must be executed before others. rcorder comes from NetBSD. NetBSD and
21 FreeBSD use it for ordering start sequence in their boot scripts.
22 This package is a Linux port.
23
24 %description -l pl.UTF-8
25 Rcorder wypisuje kolejność zależności współzależnych plików. Zazwyczaj
26 jest używany do znajdywania prawidłowej sekwencji uruchamiania
27 skryptów, w których kolejność uruchamiania jest ważna. Narzędzie to
28 wywodzi się z NetBSD gdzie, tak jak we FreeBSD, jest używane do
29 ustalania kolejności uruchamiania usług podczas startu systemu. Ten
30 pakiet zawiera port linuksowy.
31
32 %prep
33 %setup -q -n %{name}
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 install -d $RPM_BUILD_ROOT/sbin
46
47 %{__make} install \
48         DESTDIR=$RPM_BUILD_ROOT
49
50 mv $RPM_BUILD_ROOT%{_bindir}/rcorder $RPM_BUILD_ROOT/sbin
51
52 %clean
53 rm -rf $RPM_BUILD_ROOT
54
55 %files
56 %defattr(644,root,root,755)
57 %doc AUTHORS LICENSES
58 %attr(755,root,root) /sbin/*
59 %{_mandir}/man?/*
This page took 0.092649 seconds and 3 git commands to generate.