]> git.pld-linux.org Git - packages/genromfs.git/blob - genromfs.spec
- added "rm -f missing" on top %build.
[packages/genromfs.git] / genromfs.spec
1 Summary:        Utility for creating romfs filesystems
2 Summary(pl):    Narzêdzie do tworzenia systemów plików romfs
3 Name:           genromfs
4 Version:        0.5
5 Release:        1
6 License:        GPL
7 Group:          Applications/System
8 Group(de):      Applikationen/System
9 Group(es):      Aplicaciones/Sistema
10 Group(pl):      Aplikacje/System
11 Group(pt_BR):   Aplicações/Sistema
12 Source0:        ftp://ftp.banki.hu/pub/linux/local/%{name}-%{version}.tar.gz
13 Patch0:         %{name}-ac_am.patch
14 BuildRequires:  autoconf
15 BuildRequires:  automake
16 BuildRequires:  libtool
17 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
18 ExclusiveOS:    Linux
19
20 %define         _sbindir        /sbin
21
22 %description
23 genromfs is a tool for creating romfs filesystems, which are
24 lightweight, read-only filesystems supported by the Linux kernel.
25 Romfs filesystems are mainly used for the initial RAM disks used
26 during installation.
27
28 %description -l pl
29 genromfs jest narzêdziem s³u¿±cym do tworzenia systemów plików romfs,
30 które s± lekkimi systemami plików tylko do odczytu, obs³ugiwanymi
31 przez j±dro Linuksa. Romfs jest g³ównie u¿ywany na inicjalnym
32 ramdysku, u¿ywanym w trakcie startu systemu.
33
34 %prep
35 %setup -q
36 %patch -p1
37
38 %build
39 rm -f missing
40 libtoolize --copy --force
41 aclocal
42 automake -a -c
43 autoconf
44 %configure
45 %{__make}
46
47 %install
48 rm -rf $RPM_BUILD_ROOT
49
50 %{__make} install \
51         DESTDIR=$RPM_BUILD_ROOT
52
53 gzip -9nf ChangeLog genromfs.lsm romfs.txt NEWS
54
55 %clean
56 rm -rf $RPM_BUILD_ROOT
57
58 %files
59 %defattr(644,root,root,755)
60 %doc *.gz
61 %attr(755,root,root) %{_sbindir}/*
62 %{_mandir}/man8/*
This page took 0.039328 seconds and 4 git commands to generate.