]> git.pld-linux.org Git - packages/febootstrap.git/blob - febootstrap.spec
- updated to 3.21
[packages/febootstrap.git] / febootstrap.spec
1 Summary:        Bootstrapping tool for creating supermin appliances
2 Summary(pl.UTF-8):      Narzędzie bootstrapujące do tworzenia minimalistycznych instalacji
3 Name:           febootstrap
4 Version:        3.21
5 Release:        1
6 License:        GPL v2
7 Group:          Applications/System
8 Source0:        http://libguestfs.org/download/febootstrap/%{name}-%{version}.tar.gz
9 # Source0-md5:  8938bc9af564ba389651ee24cc3d3d30
10 URL:            http://people.redhat.com/~rjones/febootstrap/
11 BuildRequires:  e2fsprogs-devel
12 BuildRequires:  gawk
13 BuildRequires:  libcom_err-devel
14 BuildRequires:  ocaml >= 3.04-7
15 BuildRequires:  ocaml-findlib
16 # not needed in releases (BTW: perldoc is checked, but pod2man is actually used)
17 #BuildRequires: perl-perldoc
18 #BuildRequires: perl-tools-pod
19 BuildRequires:  zlib-devel
20 Suggests:       filelight
21 Suggests:       qemu
22 Suggests:       yum >= 3.2
23 Suggests:       yum-utils
24 Requires:       %{name}-supermin-helper = %{version}-%{release}
25 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
26
27 %description
28 Febootstrap is a tool for building supermin appliances. These are tiny
29 appliances [similar to virtual machines], usually around 100KB in
30 size, which get fully instantiated on-the-fly in a fraction of a
31 second when you need to boot one of them.
32
33 Currently only Fedora and Debian are supported.
34
35 %description -l pl.UTF-8
36 Febootstrap to narzędzie do tworzenia minimalistycznych instalacji
37 zwanych "appliance". Są to małe instalacje (podobne do maszyn
38 wirtualnych), zwykle mające ok. 100kB, które można zainstalować w
39 całości w locie w ciągu ułamku sekundy, kiedy zachodzi potrzeba
40 uruchomienia takowej.
41
42 Obecnie obsługiwane są tylko Fedora i Debian.
43
44 %package supermin-helper
45 Summary:        Runtime support for febootstrap
46 Summary(pl.UTF-8):      Wsparcie uruchomieniowe dla narzędzia febootstrap
47 Group:          Development/Tools
48 Requires:       util-linux
49 Requires:       cpio
50 Requires:       /sbin/mke2fs
51
52 %description supermin-helper
53 This package contains the runtime support for febootstrap.
54
55 %description supermin-helper -l pl.UTF-8
56 Ten pakiet zawiera wsparcie uruchomieniowe dla narzędzia febootstrap.
57
58 %prep
59 %setup -q
60
61 %build
62 %configure \
63         APT_CACHE="apg-cache" \
64         APTITUDE="aptitude" \
65         DPKG="dpkg" \
66         PACMAN="pacman" \
67         RPM="rpm" \
68         YUM="yum" \
69         YUMDOWNLOADER="yumdownloader"
70
71 %{__make}
72
73 %install
74 rm -rf $RPM_BUILD_ROOT
75
76 %{__make} install \
77         DESTDIR=$RPM_BUILD_ROOT
78
79 %clean
80 rm -rf $RPM_BUILD_ROOT
81
82 %files
83 %defattr(644,root,root,755)
84 %doc README TODO
85 %attr(755,root,root) %{_bindir}/febootstrap
86 %{_mandir}/man8/febootstrap.8*
87
88 %files supermin-helper
89 %defattr(644,root,root,755)
90 %doc helper/README
91 %attr(755,root,root) %{_bindir}/febootstrap-supermin-helper
92 %{_mandir}/man8/febootstrap-supermin-helper.8*
This page took 0.091783 seconds and 3 git commands to generate.