]> git.pld-linux.org Git - packages/criu.git/blame - criu.spec
C description must not be utf8 encoded
[packages/criu.git] / criu.spec
CommitLineData
6be8c1d2
AM
1Summary: checkpoint/restore functionality for Linux in userspace
2Name: criu
3Version: 1.0
4Release: 1
5License: GPL v2
6Group: Applications/System
7Source0: http://download.openvz.org/criu/%{name}-%{version}.tar.bz2
8# Source0-md5: 67c4ca5ca36a3514f247e86743c9ceee
9URL: http://criu.org/
10BuildRequires: autoconf >= 2.50
11BuildRequires: protobuf-c-devel
12BuildRequires: rpmbuild(macros) >= 1.228
7a8067bd 13BuildRequires: sed >= 4.0
6be8c1d2
AM
14BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
15
16%description
7a8067bd
ER
17Checkpoint/Restore In Userspace, or CRIU, is a software tool for Linux
18operating system. Using this tool, you can freeze a running
19application (or part of it) and checkpoint it to a hard drive as a
20collection of files. You can then use the files to restore and run the
21application from the point it was frozen at. The distinctive feature
22of the CRIU project is that it is mainly implemented in user space.
23
24%description -l en.UTF-8
6be8c1d2
AM
25Checkpoint/Restore In Userspace, or CRIU (pronounced kree-oo, IPA:
26/krɪʊ/, Russian: криу), is a software tool for Linux operating system.
27Using this tool, you can freeze a running application (or part of it)
28and checkpoint it to a hard drive as a collection of files. You can
29then use the files to restore and run the application from the point
30it was frozen at. The distinctive feature of the CRIU project is that
31it is mainly implemented in user space.
32
33%prep
34%setup -q
35sed -i -e 's#-O2#$(OPT)#g' Makefile*
36
37%build
38%{__make} \
39 CC="%{__cc}" \
40 OPT="%{rpmcppflags} %{rpmcflags}" \
41 V=1 \
42 WERROR=0
43
44%install
45rm -rf $RPM_BUILD_ROOT
6be8c1d2
AM
46%{__make} install \
47 SBINDIR=/sbin \
48 MANDIR=%{_mandir} \
49 DESTDIR=$RPM_BUILD_ROOT
7a8067bd 50
6be8c1d2
AM
51%clean
52rm -rf $RPM_BUILD_ROOT
53
54%files
55%defattr(644,root,root,755)
56%doc CREDITS README
57%attr(755,root,root) /sbin/criu
58%{_mandir}/man8/criu.8*
This page took 0.058463 seconds and 4 git commands to generate.