-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathquilt.spec.in
62 lines (52 loc) · 1.43 KB
/
quilt.spec.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#
# spec file for quilt - patch management scripts
#
Name: quilt
Summary: Scripts for working with series of patches
License: GPL
Group: Productivity/Text/Utilities
Version: @VERSION@
Release: @RELEASE@
Requires: coreutils diffutils findutils patch gzip bzip2 perl mktemp gettext
Autoreqprov: off
Source: quilt-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
The scripts allow to manage a series of patches by keeping
track of the changes each patch makes. Patches can be
applied, un-applied, refreshed, etc.
The scripts are heavily based on Andrew Morton's patch scripts
found at http://userweb.kernel.org/~akpm/stuff/patch-scripts.tar.gz.
Authors:
--------
Andrew Morton <[email protected]>
Andreas Gruenbacher <[email protected]>
%prep
%setup
%build
CFLAGS="$RPM_OPT_FLAGS" \
./configure --prefix=/usr \
--mandir=%_mandir \
--docdir=%_docdir/%{name}-%{version}
make RELEASE=%release
%install
rm -rf $RPM_BUILD_ROOT
make install prefix=/usr BUILD_ROOT=$RPM_BUILD_ROOT
%{find_lang} %{name}
%clean
rm -rf $RPM_BUILD_ROOT
%files -f %{name}.lang
%defattr(-, root, root)
/usr/bin/guards
/usr/bin/quilt
/usr/share/quilt/
/usr/share/emacs/
/etc/bash_completion.d/quilt
%config(noreplace) /etc/quilt.quiltrc
%doc %{_mandir}/man1/guards.1*
%doc %{_mandir}/man1/quilt.1*
%doc %{_docdir}/%{name}-%{version}/README
%doc %{_docdir}/%{name}-%{version}/README.MAIL
%doc %{_docdir}/%{name}-%{version}/quilt.pdf
%changelog
@CHANGELOG@