summaryrefslogtreecommitdiff
path: root/libraries/ucl/README
diff options
context:
space:
mode:
authorBinh Nguyen <binhnguyen@fastmail.fm>2010-09-17 04:50:34 -0400
committerRobby Workman <rworkman@slackbuilds.org>2010-09-21 22:09:38 -0500
commita2387e026cf112ab95baa784c62d30464a46292b (patch)
tree1ed6426de9e7d9be35c27f7f2c3d588b7b630c41 /libraries/ucl/README
parentb0e9330a8bb8a7808a0459096ea0653a0f201d7c (diff)
downloadslackbuilds-a2387e026cf112ab95baa784c62d30464a46292b.tar.gz
libraries/ucl: Added (portable lossless data compression)
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'libraries/ucl/README')
-rw-r--r--libraries/ucl/README16
1 files changed, 16 insertions, 0 deletions
diff --git a/libraries/ucl/README b/libraries/ucl/README
new file mode 100644
index 0000000000..1ebe483b30
--- /dev/null
+++ b/libraries/ucl/README
@@ -0,0 +1,16 @@
+UCL is written in ANSI C. Both the source code and the compressed data
+format are designed to be portable across platforms.
+
+UCL implements a number of algorithms with the following features:
+
+ * Decompression is simple and *very* fast.
+ * Requires no memory for decompression.
+ * The decompressors can be squeezed into less than 200 bytes of code.
+ * Focuses on compression levels for generating pre-compressed data
+ which achieve a quite competitive compression ratio.
+ * Allows you to dial up extra compression at a speed cost in the
+ compressor. The speed of the decompressor is not reduced.
+ * Algorithm is thread safe.
+ * Algorithm is lossless.
+
+UCL supports in-place decompression.