File the_silver_searcher.spec of Package the_silver_searcher
#
# spec file for package the_silver_searcher
#
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: the_silver_searcher
Version: 0.31.0
Release: 0
Summary: A code-searching tool similar to ack, but faster
License: Apache-2.0
Group: Productivity/File utilities
Url: https://github.com/ggreer/the_silver_searcher
Source: http://geoff.greer.fm/ag/releases/%{name}-%{version}.tar.gz
Source2: http://geoff.greer.fm/ag/releases/%{name}-%{version}.tar.gz.asc
Source3: %{name}.keyring
Source4: %{name}.changes
BuildRequires: pkg-config >= 0.9.0
Requires: bash-completion
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?suse_version} > 1110
BuildRequires: pkgconfig(liblzma)
BuildRequires: pkgconfig(libpcre)
BuildRequires: pkgconfig(zlib)
%else
BuildRequires: pcre-devel
BuildRequires: xz-devel
BuildRequires: zlib-devel
%endif
%description
A code searching tool similar to ack, with a focus on speed.
%prep
%setup -q
%build
%configure
make %{?_smp_mflags}
%install
make DESTDIR=%{buildroot} install %{?_smp_mflags}
mkdir -p %{buildroot}/%{_sysconfdir}/bash_completion.d
mv -v %{buildroot}%{_datadir}/%{name}/completions/ag.bashcomp.sh %{buildroot}/%{_sysconfdir}/bash_completion.d/%{name}
%files
%defattr(-,root,root)
%doc LICENSE NOTICE README.md
%{_bindir}/ag
%{_mandir}/man1/ag.1.gz
%config %{_sysconfdir}/bash_completion.d/%{name}
%changelog