]> git.pld-linux.org Git - packages/genromfs.git/blob - genromfs.spec
- dropped pre-cvs changelog
[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.2
5 Release:        2
6 License:        GPL v2+
7 Group:          Applications/System
8 Source0:        http://dl.sourceforge.net/romfs/%{name}-%{version}.tar.gz
9 # Source0-md5:  2a91463c56f9e042edc330c063a0cf5a
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
17 %define         _sbindir        /sbin
18
19 %description
20 genromfs 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.UTF-8
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 Linuksa. Romfs jest głównie używany na inicjalnym
29 ramdysku, używanym w trakcie startu systemu.
30
31 %prep
32 %setup -q
33 %patch0 -p1
34
35 %build
36 %{__libtoolize}
37 %{__aclocal}
38 %{__automake}
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 %clean
50 rm -rf $RPM_BUILD_ROOT
51
52 %files
53 %defattr(644,root,root,755)
54 %doc ChangeLog NEWS genromfs.lsm romfs.txt
55 %attr(755,root,root) %{_sbindir}/genromfs
56 %{_mandir}/man8/genromfs.8*
This page took 0.068 seconds and 3 git commands to generate.