]> git.pld-linux.org Git - packages/genromfs.git/blob - genromfs.spec
- tabs in preamble
[packages/genromfs.git] / genromfs.spec
1 Summary:        Utility for creating romfs filesystems
2 Summary(pl.UTF-8):      Narzędzie do tworzenia systemów plików romfs
3 Name:           genromfs
4 Version:        0.5.1
5 Release:        3
6 License:        GPL
7 Group:          Applications/System
8 Source0:        http://dl.sourceforge.net/romfs/%{name}-%{version}.tar.gz
9 # Source0-md5:  fee69ecbf8f990fdb0ca0c7267c13e7e
10 Patch0:         %{name}-ac_am.patch
11 URL:            http://romfs.sourceforge.net/
12 BuildRequires:  autoconf
13 BuildRequires:  automake
14 BuildRequires:  libtool
15 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
16 ExclusiveOS:    Linux
17
18 %define         _sbindir        /sbin
19
20 %description
21 genromfs is a tool for creating romfs filesystems, which are
22 lightweight, read-only filesystems supported by the Linux kernel.
23 Romfs filesystems are mainly used for the initial RAM disks used
24 during installation.
25
26 %description -l pl.UTF-8
27 genromfs jest narzędziem służącym do tworzenia systemów plików romfs,
28 które są lekkimi systemami plików tylko do odczytu, obsługiwanymi
29 przez jądro Linuksa. Romfs jest głównie używany na inicjalnym
30 ramdysku, używanym w trakcie startu systemu.
31
32 %prep
33 %setup -q
34 %patch0 -p1
35
36 %build
37 rm -f missing
38 %{__libtoolize}
39 %{__aclocal}
40 %{__automake}
41 %{__autoconf}
42 %configure
43 %{__make}
44
45 %install
46 rm -rf $RPM_BUILD_ROOT
47
48 %{__make} install \
49         DESTDIR=$RPM_BUILD_ROOT
50
51 %clean
52 rm -rf $RPM_BUILD_ROOT
53
54 %files
55 %defattr(644,root,root,755)
56 %doc ChangeLog genromfs.lsm romfs.txt NEWS
57 %attr(755,root,root) %{_sbindir}/*
58 %{_mandir}/man8/*
This page took 0.055871 seconds and 3 git commands to generate.