]> git.pld-linux.org Git - packages/agrep.git/blame_incremental - agrep.spec
- converted to UTF-8
[packages/agrep.git] / agrep.spec
... / ...
CommitLineData
1Summary: Approximate grep
2Summary(pl.UTF-8): Wersja grep dopuszczająca błędy
3Name: agrep
4Version: 2.04
5Release: 6
6License: distributable not for profit, free use
7Group: Applications/Text
8Source0: ftp://ftp.cs.arizona.edu/agrep/%{name}-%{version}.tar.Z
9# Source0-md5: abc645404d3926a57c3f5e86a6e89ee9
10BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
11
12%description
13Tool 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
17agrep jest narzędziem podobnym do grep, ale umożliwia przeszukiwanie
18przybliżone.
19
20%prep
21%setup -q
22
23%build
24%{__make} \
25 CFLAGS="%{rpmcflags}"
26
27%install
28rm -rf $RPM_BUILD_ROOT
29install -d $RPM_BUILD_ROOT{%{_bindir},%{_mandir}/man1}
30
31install agrep $RPM_BUILD_ROOT%{_bindir}/agrep
32install agrep.1 $RPM_BUILD_ROOT%{_mandir}/man1/agrep.1
33
34%clean
35rm -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.060549 seconds and 4 git commands to generate.