]> git.pld-linux.org Git - packages/partimage.git/blob - partimage.spec
- cosmetics.
[packages/partimage.git] / partimage.spec
1 Summary:        Utility to save partitions in a compressed image file
2 Summary(pl):    Narzêdzie do zapisu partycji w skompresowanych plikach
3 Name:           partimage
4 Version:        0.3.6
5 Release:        1
6 License:        GPL
7 Vendor:         François Dupoux <fdupoux@partimage.org>
8 Group:          Applications/System
9 Group(de):      Applikationen/System
10 Group(pl):      Aplikacje/System
11 Source0:        http://prdownloads.sourceforge.net/partimage/%{name}-%{version}.tar.gz
12 URL:            http://www.partimage.org/
13 BuildRequires:  automake
14 BuildRequires:  autoconf
15 BuildRequires:  bzip2-devel
16 BuildRequires:  e2fsprogs-devel
17 BuildRequires:  gettext-devel
18 BuildRequires:  newt-devel
19 BuildRequires:  slang-devel
20 BuildRequires:  zlib-devel
21 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
22
23 %description
24 Linux/UNIX utility to save partitions in a compressed image file
25 Partition Image is a Linux/UNIX partition imaging utility: it saves
26 partitions in the Ext2FS (the linux standard), ReiserFS (a new
27 journalized and powerful file system), NTFS (Windows NT File System)
28 or FAT16/32 (DOS & Windows file systems), file system formats to an
29 image file. Only used blocks are copied. The image file can be
30 compressed in the GZIP/BZIP2 formats to save disk space, and splitted
31 into multiple files to be copied on amovibles floppies (ZIP for
32 example), or burned on a CD-R ... This allows to save a full
33 Linux/Windows system, with an only operation. When problems (viruses,
34 crash, error, ...), you just have to restore, and after several
35 minutes, all your system is restored (boot, files, ...), and fully
36 working. This is very useful when installing the same software on many
37 machines: just install one of them, create an image, and just restore
38 the image on all other machines. Then, after the first one, each
39 installation is automatically made, and only require a few minutes.
40
41 %description -l pl
42 Narzêdzie Linuksowe do zapisywania partycji w skompresowanych plikach.
43 Potrafi ono zapisywaæ partycje ext2, ReiserFS, NTFS, FAT16/32. Tylko
44 u¿ywane bloki s± kopiowane. Plik wyj¶ciowy mo¿e byæ podzielony na
45 wiele mniejszych oraz kompresowany w formacie gzip/bzip2 w celu
46 zaoszczêdzenia miejsca.
47
48 %prep
49 %setup -q
50
51 %build
52 rm missing
53 gettextize --copy --force
54 aclocal
55 autoconf
56 automake -a -c
57 %configure \
58         --enable-nls \
59         --without-included-gettext
60 %{__make}
61
62 %install
63 rm -rf $RPM_BUILD_ROOT
64
65 %{__make} install \
66         DESTDIR=$RPM_BUILD_ROOT
67
68 mv $RPM_BUILD_ROOT%{_datadir}/doc/%{name}/html .
69
70 gzip -9nf AUTHORS BOOT* ChangeLog README THANKS TODO
71
72 %find_lang %{name}
73
74 %clean
75 rm -rf $RPM_BUILD_ROOT
76
77 %files -f %{name}.lang
78 %defattr(644,root,root,755)
79 %doc *.gz html
80 %attr(755,root,root) %{_sbindir}/*
This page took 0.057906 seconds and 3 git commands to generate.