]> git.pld-linux.org Git - packages/cromfs.git/blame - cromfs.spec
- Init PLD spec
[packages/cromfs.git] / cromfs.spec
CommitLineData
3bedee6a 1Summary: Compressed ROM filesystem for Linux in user-space
2Name: cromfs
3Version: 1.1.0.1
4Release: 0.1
5License: GPL
6Group: Applications
7Source0: http://bisqwit.iki.fi/src/arch/%{name}-%{version}.tar.bz2
8# Source0-md5: 54b91063f21781330a8a7ef27faae19c
9URL: http://bisqwit.iki.fi/source/cromfs.html
10BuildRequires: libfuse-devel
11BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
12
13%description
14Cromfs is a compressed read-only filesystem for Linux. Cromfs is
15intended for permanently archiving gigabytes of big files that have
16lots of redundancy.
17
18In terms of compression it is much similar to 7-zip files, except that
19practical realtime access (albeit much slower than on most other
20filesystems) can be provided for the whole archive contents; the user
21does not need to launch a program to decompress a single file, nor
22does he need to wait while the system decompresses 500 files from a
231000-file archive to get him the 1 file he wanted to open.
24
25The creation of cromfs was inspired from Squashfs and Cramfs.
26
27%prep
28%setup -q
29
30%build
31%{__make} \
32 CXX="%{__cxx}" \
33 CXXFLAGS="%{rpmcflags}"
34
35%install
36rm -rf $RPM_BUILD_ROOT
37
38install -d $RPM_BUILD_ROOT%{_bindir}
39install cromfs-driver $RPM_BUILD_ROOT%{_bindir}
40install util/mkcromfs $RPM_BUILD_ROOT%{_bindir}
41
42%clean
43rm -rf $RPM_BUILD_ROOT
44
45%files
46%defattr(644,root,root,755)
47%doc doc/ChangeLog doc/FORMAT README.html
48%attr(755,root,root) %{_bindir}/*
This page took 0.036165 seconds and 4 git commands to generate.