summaryrefslogtreecommitdiff
path: root/filesystems/fuse-lzofs/Makefile
diff options
context:
space:
mode:
authorxtraeme <xtraeme>2007-02-20 23:00:08 +0000
committerxtraeme <xtraeme>2007-02-20 23:00:08 +0000
commitc3d09ade8a7b8090c3e2cf55e52b44963d487144 (patch)
tree0f7d2beffaf101c07db95f4f8160e60a9f5441e8 /filesystems/fuse-lzofs/Makefile
parent8920a655f710c6eb5b5277d85922dfb93117766d (diff)
downloadpkgsrc-c3d09ade8a7b8090c3e2cf55e52b44963d487144.tar.gz
Initial import of fuse-lzofs-20060306.
LZOlayer Filesystem is a filesystem which allows you to use transparently compressed files, just as they would be normal files. Both read and write operations are possible, along with other most common system calls. It consumes little memory in my opinion, because files are divided into blocks, which can be decompressed separetly. In other words, if you (or an application) would like to read byte 4,500,000 in a file sized 5,000,000 bytes, it only decompresses a block which constain wanted data. Write operation is based on a packet gathering and after reaching its limit it 'syncs' the data. It allows it's user to write/modify files pretty fast, despite the fact it's block divided. LZOlayer FileSystem was meant to support only LZO compression algorythm, because it has extremely low compression/decompression time. However, currently it supports LZO and ZLIB (but only one at the run-time!) compression algorythms.
Diffstat (limited to 'filesystems/fuse-lzofs/Makefile')
-rw-r--r--filesystems/fuse-lzofs/Makefile24
1 files changed, 24 insertions, 0 deletions
diff --git a/filesystems/fuse-lzofs/Makefile b/filesystems/fuse-lzofs/Makefile
new file mode 100644
index 00000000000..bc5de5f7608
--- /dev/null
+++ b/filesystems/fuse-lzofs/Makefile
@@ -0,0 +1,24 @@
+# $NetBSD: Makefile,v 1.1.1.1 2007/02/20 23:00:08 xtraeme Exp $
+#
+
+DISTNAME= LZOlayer_fs-20060306
+PKGNAME= fuse-${DISTNAME:S/LZOlayer_fs/lzofs/}
+CATEGORIES= sysutils
+MASTER_SITES= http://north.one.pl/~kazik/pub/LZOlayer/
+
+MAINTAINER= pkgsrc-users@NetBSD.org
+HOMEPAGE= http://north.one.pl/~kazik/pub/LZOlayer/
+COMMENT= Filesystem which allows you to use transparently compressed files
+
+USE_TOOLS+= gmake
+NO_CONFIGURE= yes
+BUILD_TARGET= default
+
+INSTALLATION_DIRS= bin
+
+do-install:
+ ${INSTALL_PROGRAM} ${WRKSRC}/lzo_fs ${PREFIX}/bin/lzo_fs
+
+.include "../../archivers/lzo/buildlink3.mk"
+.include "../../mk/fuse.buildlink3.mk"
+.include "../../mk/bsd.pkg.mk"