]> git.pld-linux.org Git - packages/agrep.git/blob - agrep.spec
bddc2991a9bc1a0b38223d3e02991f7885e6cc18
[packages/agrep.git] / agrep.spec
1 Summary:        Approximate grep
2 Summary(pl):    Wersja grep dopuszczaj±ca b³êdy
3 Name:           agrep
4 Version:        2.04
5 Release:        5
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
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} CFLAGS="%{rpmcflags}"
25
26 %install
27 rm -rf $RPM_BUILD_ROOT
28 install -d $RPM_BUILD_ROOT{%{_bindir},%{_mandir}/man1}
29
30 install agrep $RPM_BUILD_ROOT%{_bindir}/agrep
31 install agrep.1 $RPM_BUILD_ROOT%{_mandir}/man1/agrep.1
32
33 %clean
34 rm -rf $RPM_BUILD_ROOT
35
36 %files
37 %defattr(644,root,root,755)
38 %doc COPYRIGHT README agrep.algorithms agrep.chronicle contribution.list
39 %attr(755,root,root) %{_bindir}/*
40 %{_mandir}/man1/*
This page took 0.096212 seconds and 2 git commands to generate.