OSDN Git Service

Changed some config of openrc.
[resuse/spec.git] / sed.spec
1 Summary: A Stream-Oriented Non-Interactive Text Editor
2 Name: sed
3 Version: 4.8
4 Release: 1
5 License: GPLv3+
6 URL: https://www.gnu.org/software/sed/
7 Source0: https://mirrors.ustc.edu.cn/gnu/%{name}/%{name}-%{version}.tar.xz
8 Source1: https://mirrors.ustc.edu.cn/gnu/%{name}/%{name}-%{version}.tar.xz.sig
9
10 %description
11 sed is commonly used to filter text, i.e., it takes text input, performs some
12 operation (or set of operations) on it, and outputs the modified text. sed is
13 typically used for extracting part of a file using pattern matching or
14 substituting multiple occurrences of a string within a file.
15
16 %prep
17 %setup -q
18
19 %build
20 %configure --without-included-regex
21 make %{?_smp_mflags} V=1
22
23 %check
24 make %{?_smp_mflags} check
25
26 %install
27 %make_install
28
29 %files
30
31
32 %changelog