]> git.pld-linux.org Git - packages/cromfs.git/commitdiff
- Init PLD spec
authorareq <areq@pld-linux.org>
Sun, 14 May 2006 15:13:44 +0000 (15:13 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    cromfs.spec -> 1.1

cromfs.spec [new file with mode: 0644]

diff --git a/cromfs.spec b/cromfs.spec
new file mode 100644 (file)
index 0000000..3c7304e
--- /dev/null
@@ -0,0 +1,48 @@
+Summary:       Compressed ROM filesystem for Linux in user-space
+Name:          cromfs
+Version:       1.1.0.1
+Release:       0.1
+License:       GPL
+Group:         Applications
+Source0:       http://bisqwit.iki.fi/src/arch/%{name}-%{version}.tar.bz2
+# Source0-md5: 54b91063f21781330a8a7ef27faae19c
+URL:           http://bisqwit.iki.fi/source/cromfs.html
+BuildRequires: libfuse-devel
+BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+Cromfs is a compressed read-only filesystem for Linux. Cromfs is
+intended for permanently archiving gigabytes of big files that have
+lots of redundancy.
+
+In terms of compression it is much similar to 7-zip files, except that
+practical realtime access (albeit much slower than on most other
+filesystems) can be provided for the whole archive contents; the user
+does not need to launch a program to decompress a single file, nor
+does he need to wait while the system decompresses 500 files from a
+1000-file archive to get him the 1 file he wanted to open.
+
+The creation of cromfs was inspired from Squashfs and Cramfs.
+
+%prep
+%setup -q
+
+%build
+%{__make} \
+       CXX="%{__cxx}" \
+       CXXFLAGS="%{rpmcflags}"
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+install -d $RPM_BUILD_ROOT%{_bindir}
+install  cromfs-driver $RPM_BUILD_ROOT%{_bindir}
+install  util/mkcromfs $RPM_BUILD_ROOT%{_bindir}
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%doc doc/ChangeLog doc/FORMAT README.html
+%attr(755,root,root) %{_bindir}/*
This page took 0.101983 seconds and 4 git commands to generate.