]> git.pld-linux.org Git - packages/f2fs-tools.git/blob - f2fs-tools.spec
- updated to 1.4.1
[packages/f2fs-tools.git] / f2fs-tools.spec
1 Summary:        Utilities for managing the f2fs filesystem
2 Summary(pl.UTF-8):      Narzędzia do systemu plików f2fs
3 Name:           f2fs-tools
4 Version:        1.4.1
5 Release:        1
6 License:        GPL v2
7 Group:          Applications/System
8 Source0:        http://git.kernel.org/cgit/linux/kernel/git/jaegeuk/f2fs-tools.git/snapshot/%{name}-%{version}.tar.gz
9 # Source0-md5:  d1286b83d4844d5eac3e53a1ed772288
10 Patch0:         no_subst.patch
11 URL:            http://f2fs-tools.sourceforge.net/
12 BuildRequires:  autoconf >= 2.68
13 BuildRequires:  automake
14 BuildRequires:  libtool
15 BuildRequires:  libuuid-devel
16 BuildRequires:  pkgconfig
17 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
18
19 %description
20 Tools for flash-friendly filesystem (f2fs).
21
22 %description -l pl.UTF-8
23 Pakiet ten zawiera narzędzia do tworzenia systemów plików f2fs.
24
25 %prep
26 %setup -q
27 %patch0 -p1
28
29 %build
30 %{__libtoolize}
31 %{__aclocal} -I m4
32 %{__autoconf}
33 %{__autoheader}
34 %{__automake}
35 %configure \
36         --disable-static
37 %{__make}
38
39 %install
40 rm -rf $RPM_BUILD_ROOT
41 %{__make} install \
42         DESTDIR=$RPM_BUILD_ROOT
43
44 # API not exported
45 %{__rm} $RPM_BUILD_ROOT%{_libdir}/libf2fs.{so,la}
46
47 %clean
48 rm -rf $RPM_BUILD_ROOT
49
50 %post   -p /sbin/ldconfig
51 %postun -p /sbin/ldconfig
52
53 %files
54 %defattr(644,root,root,755)
55 %doc AUTHORS ChangeLog README
56 %attr(755,root,root) %{_libdir}/libf2fs.so.0.0.0
57 %attr(755,root,root) %ghost %{_libdir}/libf2fs.so.0
58 %attr(755,root,root) %{_sbindir}/dump.f2fs
59 %attr(755,root,root) %{_sbindir}/f2fstat
60 %attr(755,root,root) %{_sbindir}/fibmap.f2fs
61 %attr(755,root,root) %{_sbindir}/fsck.f2fs
62 %attr(755,root,root) %{_sbindir}/mkfs.f2fs
63 %attr(755,root,root) %{_sbindir}/parse.f2fs
64 %{_mandir}/man8/mkfs.f2fs.8*
This page took 0.126436 seconds and 4 git commands to generate.