]> git.pld-linux.org Git - SPECS.git/blob - tailer.spec
SPECS updated Tue 30 Apr 15:13:02 CEST 2024
[SPECS.git] / tailer.spec
1 Summary:        Tailer - writing output to file and screen
2 Summary(pl.UTF-8):      Tailer - zapis wyjścia do pliku i na ekran
3 Name:           tailer
4 Version:        0.2
5 Release:        1
6 License:        GPL
7 Group:          Applications/Text
8 Source0:        %{name}-%{version}.tgz
9 # Source0-md5:  a293e91618b8093a85219385b9b8e150
10 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
11
12 %description
13 Tailer is a simple utility for writing output of executed
14 applications to file and screen at the same time.
15
16 %description -l pl.UTF-8
17 Tailer to proste narzędzie do zapisywanie wyjścia z wykonywanych
18 aplikacji do pliku i na ekran jednocześnie.
19
20 %prep
21 %setup -q
22
23 %build
24 %{__cc} -Wall %{rpmcflags} tailer.c -o tailer
25
26 %install
27 rm -rf $RPM_BUILD_ROOT
28 install -d $RPM_BUILD_ROOT%{_bindir}
29
30 install tailer $RPM_BUILD_ROOT%{_bindir}
31
32 %clean
33 rm -rf $RPM_BUILD_ROOT
34
35 %files
36 %defattr(644,root,root,755)
37 %attr(755,root,root) %{_bindir}/*
This page took 0.852282 seconds and 3 git commands to generate.