]> git.pld-linux.org Git - packages/ack.git/commitdiff
- up to 0.92 auto/th/perl-ack-1_92-1 auto/ti/perl-ack-1_92-1
authorpawelz <pawelz@pld-linux.org>
Sun, 4 Apr 2010 19:35:01 +0000 (19:35 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
- merged perl-ack.spec

Changed files:
    ack.spec -> 1.4

ack.spec

index 65decbdc16a6da3d8230ed3c586630834a72e7b5..84c2f130892c3df8305fa6b22137dcf5c01ef835 100644 (file)
--- a/ack.spec
+++ b/ack.spec
@@ -1,26 +1,38 @@
+#
+# Conditional build:
+%bcond_without tests           # do not perform "make test"
+#
 %include       /usr/lib/rpm/macros.perl
-Summary:       grep-like tool
+%define        pdir    ack
+Summary:       grep-like text finder
 Summary(pl.UTF-8):     produkt grepopodobny
-Name:          ack
-Version:       1.90
+Name:          perl-ack
+Version:       1.92
 Release:       1
-License:       GPL
-Group:         Applications
-Source0:       http://betterthangrep.com/%{name}-standalone
-# Source0-md5: d15d059166beff6103d2401aa2d783c7
+License:       GPL v1+ or Artistic
+Group:         Development/Languages/Perl
+Source0:       http://www.cpan.org/modules/by-authors/id/P/PE/PETDANCE/ack-%{version}.tar.gz
+# Source0-md5: c25b5a16d0a27386a75c91d531b86cea
 URL:           http://betterthangrep.com/
-BuildRequires: perl-tools-pod
-BuildRequires: rpm-perlprov
-Suggests:      perl-perldoc
+BuildRequires: perl-File-Next
+%{?with_tests:BuildRequires:   perl-Test-Pod}
+BuildRequires: perl-devel >= 1:5.8.0
+BuildRequires: perl-perldoc
+BuildRequires: rpm-perlprov >= 4.1-13
+Obsoletes:     perl-ack
 BuildArch:     noarch
 BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %description
-ack is a tool like grep, designed for programmers with large trees of
-heterogeneous source code.
+Ack is designed as a replacement for 99% of the uses of grep.
 
-ack is written purely in Perl, and takes advantage of the power of
-Perl's regular expressions.
+Ack searches the named input FILEs (or standard input if no files are
+named, or the file name - is given) for lines containing a match to
+the given PATTERN. By default, ack prints the matching lines.
+
+Ack can also list files that would be searched, without actually
+searching them, to let you take advantage of ack's file-type filtering
+capabilities.
 
 %description -l pld.UTF-8
 ack jest narzędziem podobnym do grepa, zaprojektowanym dla
@@ -30,23 +42,30 @@ ack jest napisane w czystym Perlu i korzysta z ptęgi wyrażeń
 regularnych języka Perl.
 
 %prep
-%setup -q -c -T
+%setup -q -n %{pdir}-%{version}
 
 %build
-pod2man %{SOURCE0} > ack.1
-pod2text %{SOURCE0} > ack.txt
+%{__perl} Makefile.PL \
+       INSTALLDIRS=vendor
+%{__make} \
+       CC="%{__cc}" \
+       OPTIMIZE="%{rpmcflags}"
+
+%{?with_tests:%{__make} test}
 
 %install
 rm -rf $RPM_BUILD_ROOT
-install -d $RPM_BUILD_ROOT{%{_bindir},%{_mandir}/man1}
-install -p %{SOURCE0} $RPM_BUILD_ROOT%{_bindir}/%{name}
-cp -a ack.1 $RPM_BUILD_ROOT%{_mandir}/man1/ack.1
+
+%{__make} pure_install \
+       DESTDIR=$RPM_BUILD_ROOT
 
 %clean
 rm -rf $RPM_BUILD_ROOT
 
 %files
 %defattr(644,root,root,755)
-%doc ack.txt
-%attr(755,root,root) %{_bindir}/%{name}
-%{_mandir}/man1/ack.1*
+%doc Changes README TODO ack-help.txt ack-help-types.txt
+%attr(755,root,root) %{_bindir}/ack
+%{perl_vendorlib}/App/Ack.pm
+%{perl_vendorlib}/App/Ack
+%{_mandir}/man1/ack.1p*
This page took 0.059916 seconds and 4 git commands to generate.