]> git.pld-linux.org Git - SPECS.git/blob - cryopid.spec
SPECS updated Wed 28 Jul 14:48:01 CEST 2021
[SPECS.git] / cryopid.spec
1 Summary:        CryoPID - a process freezer for Linux
2 Summary(pl.UTF-8):      CryoPID - zamrażacz procesów dla Linuksa
3 Name:           cryopid
4 Version:        0.4
5 Release:        0.1
6 Epoch:          0
7 License:        GPL v2
8 Group:          Applications
9 Source0:        http://dagobah.ucc.asn.au/wacky/%{name}-%{version}.tar.gz
10 # Source0-md5:  ef3580a4e1ff8b90c9d1e2a51676e7bc
11 Patch0:         %{name}-build.patch
12 URL:            http://cryopid.berlios.de/
13 BuildRequires:  lzo-static
14 ExclusiveArch:  %{ix86}
15 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
16
17 %description
18 CryoPID allows you to capture the state of a running process in Linux
19 and save it to a file. This file can then be used to resume the
20 process later on, either after a reboot or even on another machine.
21
22 %description -l pl.UTF-8
23 CryoPID umożliwia na zapamiętanie stanu działającego pod Linuksem
24 procesu i zapisanie go do pliku. Plik taki może zostać użyty do
25 wznowienia działania procesu, także po restarcie systemu bądź nawet
26 na innej maszynie.
27
28 %prep
29 %setup -q
30 %patch0 -p1
31
32 %build
33 %{__make} \
34         CC="%{__cc}" \
35         CFLAGS="%{rpmcflags}"
36
37 %install
38 rm -rf $RPM_BUILD_ROOT
39 install -d $RPM_BUILD_ROOT%{_bindir}
40
41 install freeze $RPM_BUILD_ROOT%{_bindir}
42
43 %clean
44 rm -rf $RPM_BUILD_ROOT
45
46 %files
47 %defattr(644,root,root,755)
48 %doc TODO
49 %attr(755,root,root) %{_bindir}/*
This page took 0.840087 seconds and 3 git commands to generate.