]> git.pld-linux.org Git - packages/agrep.git/blob - agrep.spec
- converted to UTF-8
[packages/agrep.git] / agrep.spec
1 Summary:        Approximate grep
2 Summary(pl.UTF-8):   Wersja grep dopuszczająca błędy
3 Name:           agrep
4 Version:        2.04
5 Release:        6
6 License:        distributable not for profit, free use
7 Group:          Applications/Text
8 Source0:        ftp://ftp.cs.arizona.edu/agrep/%{name}-%{version}.tar.Z
9 # Source0-md5:  abc645404d3926a57c3f5e86a6e89ee9
10 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
11
12 %description
13 Tool for fast text searching allowing errors. It's similar to egrep
14 (or grep or fgrep), but it is much more general and usually faster.
15
16 %description -l pl.UTF-8
17 agrep jest narzędziem podobnym do grep, ale umożliwia przeszukiwanie
18 przybliżone.
19
20 %prep
21 %setup -q
22
23 %build
24 %{__make} \
25         CFLAGS="%{rpmcflags}"
26
27 %install
28 rm -rf $RPM_BUILD_ROOT
29 install -d $RPM_BUILD_ROOT{%{_bindir},%{_mandir}/man1}
30
31 install agrep $RPM_BUILD_ROOT%{_bindir}/agrep
32 install agrep.1 $RPM_BUILD_ROOT%{_mandir}/man1/agrep.1
33
34 %clean
35 rm -rf $RPM_BUILD_ROOT
36
37 %files
38 %defattr(644,root,root,755)
39 %doc COPYRIGHT README agrep.algorithms agrep.chronicle contribution.list
40 %attr(755,root,root) %{_bindir}/*
41 %{_mandir}/man1/*
This page took 0.062793 seconds and 3 git commands to generate.