Dirk Mueller
9ca264324f
- Add Source URL, see https://en.opensuse.org/SourceUrls OBS-URL: https://build.opensuse.org/request/show/162806 OBS-URL: https://build.opensuse.org/package/show/Base:System/sed?expand=0&rev=16
94 lines
2.7 KiB
RPMSpec
94 lines
2.7 KiB
RPMSpec
#
|
|
# spec file for package sed
|
|
#
|
|
# Copyright (c) 2013 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: sed
|
|
Version: 4.2.2
|
|
Release: 0
|
|
Summary: A Stream-Oriented Non-Interactive Text Editor
|
|
License: GPL-3.0+
|
|
Group: System/Base
|
|
Url: http://www.gnu.org/software/sed/
|
|
Source: ftp://ftp.gnu.org/gnu/sed/%{name}-%{version}.tar.bz2
|
|
Source1: %{name}-%{version}.tar.bz2.sig
|
|
Source2: %{name}.keyring
|
|
# Use rpmbuild -D 'VERIFY_SIG 1' to verify signature during build or run one-shot check by "gpg-offline --verify --package=sed sed-*.sig".
|
|
%if 0%{?VERIFY_SIG}
|
|
BuildRequires: gpg-offline
|
|
%endif
|
|
PreReq: %install_info_prereq
|
|
Provides: base:/bin/sed
|
|
Recommends: %{name}-lang
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
%description
|
|
Sed takes text input, performs one or more operations on it, and
|
|
outputs the modified text. Sed is typically used for extracting parts
|
|
of a file using pattern matching or for substituting multiple
|
|
occurrences of a string within a file.
|
|
|
|
%lang_package
|
|
%prep
|
|
%if 0%{?VERIFY_SIG}
|
|
%gpg_verify %{S:1}
|
|
%endif
|
|
%setup -q
|
|
|
|
%build
|
|
%define warn_flags -Wall -Wstrict-prototypes -Wpointer-arith -Wformat-security
|
|
export CFLAGS="%{optflags} %warn_flags"
|
|
./configure --prefix=/usr \
|
|
--mandir=%{_mandir} \
|
|
--infodir=%{_infodir} \
|
|
--without-included-regex \
|
|
%{_target_cpu}-suse-linux
|
|
%if %do_profiling
|
|
make %{?_smp_mflags} CFLAGS="$CFLAGS "%cflags_profile_generate
|
|
make %{?_smp_mflags} check
|
|
make clean
|
|
make %{?_smp_mflags} CFLAGS="$CFLAGS "%cflags_profile_feedback
|
|
%else
|
|
make %{?_smp_mflags}
|
|
%endif
|
|
make %{?_smp_mflags} check
|
|
|
|
%install
|
|
%makeinstall
|
|
#UsrMerge
|
|
mkdir -p %{buildroot}/bin
|
|
ln -s %{_bindir}/sed %{buildroot}/bin/sed
|
|
#EndUserMerge
|
|
%find_lang %{name}
|
|
|
|
%files
|
|
%defattr(-, root, root)
|
|
/bin/sed
|
|
%{_bindir}/sed
|
|
%doc AUTHORS BUGS COPYING* NEWS README* THANKS
|
|
%doc %{_infodir}/sed.info*.gz
|
|
%doc %{_mandir}/man*/*.gz
|
|
|
|
%files lang -f %{name}.lang
|
|
|
|
%post
|
|
%install_info --info-dir=%{_infodir} %{_infodir}/%name.info.gz
|
|
|
|
%postun
|
|
%install_info_delete --info-dir=%{_infodir} %{_infodir}/%name.info.gz
|
|
|
|
%changelog
|