Small library for LZF compression

Hello Here is a small library to handle compressing data with LZF. Is Codec.Compression.LZF the correct place? http://www.cs.helsinki.fi/u/ekarttun/Codec-Compression-LZF/ * BSD licenced * very fast, altough at the expense of compression ratio * No external dependencies - Einar Karttunen

Einar Karttunen
Hello
Here is a small library to handle compressing data with LZF. Is Codec.Compression.LZF the correct place?
Glad to see it's cabalized! :) Here's a hint; you can make Setup into a literate Haskell script, and put "#!/usr/bin/env runhaskell" at the top; then you won't need the makefile so much; people can then say ./Setup.lhs --configure, etc... Right now maybe that only works with ghc 6.4, but #!/usr/bin/runhugs -98 will do the same thing, so maybe we need to add a little shell script to hugs. The reason for making it a literate script is so that the compilers won't get upset about the #! at the top, which isn't legal haskell. peace, isaac p.s. the permissions on your darcs repo are not correct: darcs get http://www.cs.helsinki.fi/u/ekarttun/Codec-Compression-LZF/Codec-Compression... darcs failed: Failed to download URL http://www.cs.helsinki.fi/u/ekarttun/Codec-Compression-LZF/Codec-Compression... libcurl: HTTP error (404?) It's actually a permission denied error.
participants (2)
-
Einar Karttunen
-
Isaac Jones