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