]> git.pld-linux.org Git - packages/fusecompress.git/blob - fusecompress.spec
- 2.2; doesn't build
[packages/fusecompress.git] / fusecompress.spec
1 %define tag     c5e5eb58e48a6ad08298f178a9d91b9539abf883
2 Summary:        Transparent read-write compression filesystem
3 Summary(pl.UTF-8):      System plików z przezroczystą kompresją danych
4 Name:           fusecompress
5 Version:        2.2
6 Release:        0.1
7 License:        GPL
8 Group:          Applications/System
9 # http://github.com/tex/fusecompress/tree/master
10 Source0:        tex-fusecompress-%{tag}.tar.gz
11 # Source0-md5:  733fcf027b7d030d659bbb655c527999
12 URL:            http://miio.net/fusecompress/
13 BuildRequires:  autoconf
14 BuildRequires:  automake
15 BuildRequires:  boost-devel
16 BuildRequires:  bzip2-devel
17 BuildRequires:  libfuse-devel
18 BuildRequires:  libmagic-devel
19 BuildRequires:  lzma-devel
20 BuildRequires:  libstdc++-devel
21 BuildRequires:  rlog-devel >= 1.3
22 BuildRequires:  zlib-devel
23 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
24
25 %description
26 FuseCompress provides a mountable Linux filesystem which transparently
27 compress its content. Files stored in this filesystem are compressed
28 on the fly and Fuse allows to create a transparent interface between
29 compressed files and user applications.
30
31 %description -l pl.UTF-8
32 FuseCompress udostępnia montowalny system plików, który przezroczyście
33 kompresuje swoją zawartość. Pliki przechowywane na tym systemie plików
34 są kompresowane w locie, a Fuse pozwala utworzyć przezroczysty
35 interfejs między skompresowanymi plikami a aplikacjami użytkownika
36
37 %prep
38 %setup -q -n tex-%{name}-%{tag}
39
40 %build
41 %{__aclocal} -I m4
42 %{__autoconf}
43 %configure \
44         --with-boost-libdir=%{_libdir} \
45         --with-boost-serialization=boost_serialization \
46         --with-boost-iostreams=boost_iostreams \
47         --with-boost-program-options=boost_program_options \
48         --with-boost-filesystem=boost_filesystem \
49         --with-lzma \
50         --with-z \
51         --with-bz2 \
52         --with-lzo2
53 %{__make}
54
55 %install
56 rm -rf $RPM_BUILD_ROOT
57
58 %{__make} install \
59         DESTDIR=$RPM_BUILD_ROOT
60
61 %clean
62 rm -rf $RPM_BUILD_ROOT
63
64 %files
65 %defattr(644,root,root,755)
66 %doc AUTHORS ChangeLog NEWS README TODO
67 %attr(755,root,root) %{_bindir}/%{name}
68 %attr(755,root,root) %{_bindir}/%{name}_offline
69 %{_mandir}/man1/*.1*
This page took 0.081264 seconds and 4 git commands to generate.