changeset: 685:2c0ebecc30df
tag: tip
user: Anonymous <dev_AT_suckless.org>
date: Wed Feb 09 14:13:23 2011 +0100
files: suckless.org/misc/cool_libraries.md
description:
added "cool libraries" page
diff -r c2c8ae621b0e -r 2c0ebecc30df suckless.org/misc/cool_libraries.md
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/suckless.org/misc/cool_libraries.md Wed Feb 09 14:13:23 2011 +0100
_AT_@ -0,0 +1,23 @@
+COOL LIBRARIES
+==============
+
+This category is for small, usable development libraries, which can be used for writing
+software that sucks less.
+These should be under the MIT/X consortium or BSD licenses or public domain, because it makes
+them legally compatible with other suckless projects.
+
+libc implementations
+--------------------
+* [uClibc](
http://www.uclibc.org/) - strives to be a minimalist C library suitable for embedded computing
+* [musl](
http://www.etalabs.net/musl/) - standard C library that attempts to be even smaller than uClibc
+* See also: [embedded libc comparison](
http://www.etalabs.net/compare_libcs.html)
+
+configuration file parsers
+--------------------------
+* [iniparser](
http://ndevilla.free.fr/iniparser/) - small implementation for parsing ini files (MIT licensed)
+
+compression
+-----------
+* [liblzf](
http://oldhome.schmorp.de/marc/liblzf.html) - very fast, legally unencumbered compression library (dual licensed: 2-clause BSD or GPL License)
+* [xz embedded](
http://tukaani.org/xz/embedded.html) - lightweight decompressor for the xz LZMA compressor (public domain)
+* [zlib](
http://zlib.net/) - the "standard" compression/decompression library used in many applications ([zlib license](
http://zlib.net/zlib_license.html))
Received on Wed Feb 09 2011 - 14:13:14 CET