]> git.pld-linux.org Git - packages/ccze.git/blame_incremental - ccze.spec
- tabs in preamble
[packages/ccze.git] / ccze.spec
... / ...
CommitLineData
1Summary: A robust log colorizer
2Summary(pl.UTF-8): Program w C do kolorowania logów
3Name: ccze
4Version: 0.2.1
5Release: 1
6Epoch: 1
7License: GPL
8Group: Applications/Text
9Source0: ftp://bonehunter.rulez.org/pub/ccze/stable/%{name}-%{version}.tar.gz
10# Source0-md5: 221966bce7c5f011eca38157241a0432
11URL: http://bonehunter.rulez.org/CCZE.html
12BuildRequires: autoconf
13BuildRequires: automake
14BuildRequires: ncurses-devel >= 5.0
15BuildRequires: pcre-devel >= 3.1
16BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
17
18%description
19CCZE is a roboust and modular log colorizer, with plugins for apm,
20exim, fetchmail, httpd, postfix, procmail, squid, syslog, ulogd,
21vsftpd, xferlog and more.
22
23%description -l pl.UTF-8
24CCZE jest programem napisanym w C. Umożliwia kolorowanie logów
25systemowych, FTP, WWW i mail. Posiada wtyczki, może korzystać z plików
26konfiguracyjnych, umie generować wyniki w postaci kolorowej strony
27html.
28
29%package devel
30Summary: Header file for CCZE plugins
31Summary(pl.UTF-8): Plik nagłówkowy dla wtyczek CCZE
32Group: Development/Libraries
33Requires: ncurses-devel >= 5.0
34Requires: pcre-devel >= 3.1
35# doesn't require base
36
37%description devel
38Header file for CCZE plugins.
39
40%description devel -l pl.UTF-8
41Plik nagłówkowy dla wtyczek CCZE.
42
43%prep
44%setup -q
45
46%build
47%{__aclocal}
48%{__autoheader}
49%{__autoconf}
50CFLAGS="%{rpmcflags} -I/usr/include/ncurses"
51%configure \
52 --with-builtins=all
53
54%{__make}
55
56%install
57rm -rf $RPM_BUILD_ROOT
58install -d $RPM_BUILD_ROOT%{_sysconfdir}
59
60%{__make} install \
61 DESTDIR=$RPM_BUILD_ROOT
62
63src/ccze-dump >$RPM_BUILD_ROOT%{_sysconfdir}/cczerc
64
65%clean
66rm -rf $RPM_BUILD_ROOT
67
68%files
69%defattr(644,root,root,755)
70%doc AUTHORS ChangeLog ChangeLog-0.1 NEWS README THANKS FAQ
71%config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/cczerc
72%attr(755,root,root) %{_bindir}/ccze
73%attr(755,root,root) %{_bindir}/ccze-cssdump
74%{_mandir}/man1/ccze.1*
75%{_mandir}/man1/ccze-cssdump.1*
76
77%files devel
78%defattr(644,root,root,755)
79%{_includedir}/ccze.h
80%{_mandir}/man7/ccze-plugin.7*
This page took 0.099951 seconds and 4 git commands to generate.